- Mastering TensorFlow 1.x
- Armando Fandango
- 19字
- 2021-06-25 22:51:01
Training the TFLearn Model
After creating, train the model with the model.fit() method:
model.fit(X_train,
Y_train,
n_epoch=n_epochs,
batch_size=batch_size,
show_metric=True,
run_id='dense_model')