解决在django中应用keras模型时出现的ValueError("Tensor %s is not an element of this graph." % obj)问题(代码
Posted 焦距
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决在django中应用keras模型时出现的ValueError("Tensor %s is not an element of this graph." % obj)问题(代码相关的知识,希望对你有一定的参考价值。
用keras训练好模型,再在django初始化加载模型,这个过程没有问题,但是在调用到模型执行model.predict()的时候就报错:
raise ValueError("Tensor %s is not an element of this graph." % obj) ValueError: Tensor Tensor("dense_2/Softmax:0", shape=(?, 2), dtype=float32) is not an element of this graph.
解决方法:
在django中加载模型后,先执行一次model.predict()操作,之后的调用就不会出问题了
model = load_model(filepath=model_path)
y = model.predict(x)
参考:https://zhuanlan.zhihu.com/p/27101000
以上是关于解决在django中应用keras模型时出现的ValueError("Tensor %s is not an element of this graph." % obj)问题(代码的主要内容,如果未能解决你的问题,请参考以下文章
解决winserver环境上用iis来部署django时出现的环境
keras 3D UnetCNN训练时出现的segmentation fault的问题
如何修复在 Django Rest Framework 中使用 REST API 登录时出现的 CSRF 错误?