我正试着和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位计算机。
谢谢。
答案 0 :(得分:10)
错误告诉您它在该模块中找不到任何名为Dense
的内容。
也许你的意思是from keras.layers.core import Dense
?
答案 1 :(得分:-3)
使用
from tensorflow.keras.layers import dense