我正在尝试使用 Keras。
当我尝试以下代码时:
from keras.layers import Dense
我收到以下错误:
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
from keras.layers import Dense
ImportError: cannot import name 'Dense'
我正在使用 Python 3.4.3,我在 Windows 8 64 位机器上。
谢谢你。
最佳答案
该错误告诉您它在该模块中找不到名为 Dense
的任何内容。
也许你的意思是 from keras.layers.core import Dense
?
关于python - from keras.layers import Dense -- 无法导入名称 'Dense',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39646921/