Keras Model AttributeError:’str‘ object has no attribute ’call‘

Posted 17岁boy想当攻城狮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Keras Model AttributeError:’str‘ object has no attribute ’call‘相关的知识,希望对你有一定的参考价值。

这个问题是因为你在使用load_model时使用了单引号,在Python上一律使用双引号

keras_model = tf.keras_models.load_model("./test.h5")

写入时也使用双引号

open("./test1.tflite","wb").write(tflite_model)

以上是关于Keras Model AttributeError:’str‘ object has no attribute ’call‘的主要内容,如果未能解决你的问题,请参考以下文章

keras.models.Model.fit 中的“时代”是啥?

Keras:为啥 Sequential 和 Model 给出不同的输出?

Keras model.evaluate() 和 model.predict() 有啥区别?

Keras 中的 model.evaluate() 返回啥值?

AttributeError:type object ‘TFLiteConverterV2 ‘has no attribute ‘form_keras_model_file ‘

AttributeError:type object ‘TFLiteConverterV2 ‘has no attribute ‘form_keras_model_file ‘