tensorflow2 No model found in config file.

文章目录

  • 问题
  • 原因
  • 解决方案

问题

用tensorflow2 自定义了一个模型,用checkpoint选择最优模型保存,但是在用 load_model()装载模型的时候遇到 No model found in config file.
tensorflow2 No model found in config file._第1张图片
tensorflow2 No model found in config file._第2张图片

原因

把模型给换成顺序模型,如下所示是没有问题的。
tensorflow2 No model found in config file._第3张图片
原因在于,要保存h5文件,要求模型是 a Functional model 或者 a Sequential model,而对于subclassed models,我自己定义的模型应该属于这类,就不起作用,因为 isn’t safely serializable,所以建议是要换成 save_weights 而不是 load_model()

NotImplementedError: Saving the model to HDF5 format requires the model to be a Functional model or a Sequential model. It does not work for subclassed models, because such models are defined via the body of a Python method, which isn't safely serializable. Consider saving to the Tensorflow SavedModel format (by setting save_format="tf") or using `save_weights`.

解决方案

将checkpoint的函数的filepath参数改变,增加 save_weights_only参数;预测时用 load_weights 函数去装载
在这里插入图片描述
tensorflow2 No model found in config file._第4张图片

你可能感兴趣的:(问题)