ValueError: Unexpected result of `train_function` (Empty logs). Please use `Model.compile(..., run_eagerly=True)`, or `tf.config.run_functions_eagerly(True)` for more information of where went wrong, or file a issue/bug to `tf.keras`. Epoch 1/10
时间: 2023-10-21 07:05:24 浏览: 736
解决Tensorflow2.0 tf.keras.Model.load_weights() 报错处理问题
这是一个错误提示,它意味着在训练模型的过程中出现了错误。可能是由于模型的设置、数据的格式或者训练的参数等问题引起的。建议您检查代码中关于模型设置、数据处理和训练参数等部分的代码,以确定问题所在,并进行相应的修改。如果你无法解决问题,可以尝试使用 `Model.compile(..., run_eagerly=True)` 或 `tf.config.run_functions_eagerly(True)` 进行调试,或者向 `tf.keras` 的官方支持提交问题报告。
阅读全文