Kerasを使っていた時に表題のエラー。
steps_per_epochが0になると発生するらしい。
自分のソースコードを確認してみると、動作確認のため少ない枚数で学習させたので、バッチサイズで割った時に0になった模様。
例えば
nb_train_samples = 10
batch_size = 128
steps_per_epoch = nb_train_samples // batch_size # 0になってエラー
参考
AttributeError: 'ProgbarLogger' object has no attribute 'log_values' · Issue #3657 · keras-team/keras
Please make sure that the boxes below are checked before you submit your issue. Thank you! Check that you are up-to-date...
コメント