1
我想與Keras玩一下。from keras.layers import Dense - 無法導入名稱'Dense'
當我嘗試下面的代碼:
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位計算機上。
謝謝。
完美工作。然而,我有一個小問題。你怎麼知道這是解決方案?我的意思是,你的解決問題的方法是什麼? –
我搜索了「python keras圖層密集」,轉到頂部搜索結果頁面,看到那個頁面上有一個名爲Dense的對象,並指出該對象的完整模塊名稱是'keras.layers.core.Dense'。 –
非常感謝。 :) –