导入错误keras.models密集,LSTM,嵌入

时间:2017-11-11 16:46:49

标签: python tensorflow keras cpu

我无法运行此this神经语言模型教程中的代码。 虽然我已经安装了keras和tensorflow,但似乎无法从keras.models导入相关的包。

a)keras installed

b)TensorFlow installed

c)Spyder error message

我还尝试在Windows控制台中运行import命令。在那里,错误消息说“CPU支持未编译此TensorFlow二进制文件的指令”。

d)Error message in windows console

背景资料: 我正在使用Spyer 3.2.3并安装了python 3.6.0。

你能帮我找一下这个问题吗?

谢谢,非常感谢!

1 个答案:

答案 0 :(得分:0)

Dense不是模特。密集是一个层,它位于keras.layers

from keras.layers import Dense,LSTM,Embedding
from keras.models import Sequential,Model

我经常会一次性导入所有内容而忘记它:

from keras.layers import *
from keras.models import *
import keras.backend as K #for some advanced functions