Skip to content

Commit

Permalink
tf2 history keys
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbee committed Nov 8, 2019
1 parent e72ad1a commit 8d2d067
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/plot_nn_training_curves.py
Expand Up @@ -70,8 +70,8 @@ def crnn_model(width=100, n_vars=6, n_classes=7, conv_kernel_size=5,

pipe.fit(X_train, y_train)
print(DataFrame(pipe.history.history))
ac_train = pipe.history.history['acc']
ac_val = pipe.history.history['val_acc']
ac_train = pipe.history.history['accuracy']
ac_val = pipe.history.history['val_accuracy']
epoch = np.arange(len(ac_train)) + 1

##############################################
Expand Down

0 comments on commit 8d2d067

Please sign in to comment.