本文介绍了ImportError:无法导入名称"relu6"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图运行基于Keras/TensorFlow的机器学习代码.在tensorflow
环境中运行时,遇到以下错误:
I was trying to run a machine learning code based on Keras/TensorFlow. When running in tensorflow
environment, I encounter the following error:
from keras_applications.mobilenet import relu6
ImportError: cannot import name 'relu6'
我该如何解决?
推荐答案
请参阅此 answer 来自GitHub.
See this answer from GitHub.
您需要使用CustomObjectScope
导入relu6
.
这篇关于ImportError:无法导入名称"relu6"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!