You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, I fixed the spellings but now the problem is: checkpoint_path=CHECKPOINT_PATH) TypeError: fit() got an unexpected keyword argument 'checkpoint_path'
Problem fixed!
For anyone who is interested, replace the code in "train_autoencoder.py" with model = tflearn.DNN(conv_autencoder, tensorboard_verbose=3,checkpoint_path=CHECKPOINT_PATH) model.fit(X, X, n_epoch=20, shuffle=True, show_metric=True, batch_size=BATCH_SIZE, validation_set=0.1, snapshot_epoch=True, run_id='selfie_conv_autoencoder' )
checkpoints path is defined in the code,still it is showing this error
File "train_autoencoder.py", line 89, in main
checkpoint_path=CHECKPOINTS_PATH)
NameError: name 'CHECKPOINTS_PATH' is not defined
The text was updated successfully, but these errors were encountered: