KeyError in trial.py from release 1.2.0 on #878
-
Hello! I noticed that my code stopped working since I upgraded keras-tuner. The two pieces of code that started showing error messages are the following. The errors doesn't occur in release 1.1.3. Thanks! 1) Error msg: 2) Error msg: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
The
kerastuner_tensorboard_logger
is no longer needed to use TensorBoard.You can refer to: https://keras.io/guides/keras_tuner/visualize_tuning/
The error message looks like you are loading a 1.1.x saved directory with 1.2.x, which are not compatible. If you try with
overwrite=True
, it should work.