名称'Sequential'未定义Python3 Keras

p4tfgftt  于 2022-11-13  发布在  Python
关注(0)|答案(3)|浏览(535)
import numpy
import keras.models
import tensorflow
seed = 7

numpy.random.seed(seed)
dataset = numpy.genfromtxt("student-por.csv",delimiter=";")
X = dataset[:,0:33]
Y = dataset[:,8]
model = Sequential()
model.add(Dense(12, input_dim=8, init='uniform', activation='relu'))
model.add(Dense(8, init='uniform', activation='relu'))
model.add(Dense(1, init='uniform', activation='sigmoid'))
# Compile model
model.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy']) # Fit the model

scores = model.evaluate(X,Y)
print("%s: %s" % (model.metrics_names[1], scores[1]*100))

错误:

Exception 错误: #Using TensorFlow backend. #Traceback (most recent call last): # File "test.py", line 11, in # model = Sequential() #NameError: name 'Sequential' is not defined #很奇怪 他居然显示Sequential()有问题 我确认好多次我没打错了 引用库也不知道有什么问题

奇怪的是,他居然表明Sequential()有问题,我多次确认,我没有错误地键入参考库,也不知道错在哪里。

qmb5sa22

qmb5sa221#

您应该导入它。

from keras.models import Sequential
myzjeezk

myzjeezk2#

当你在代码中使用一些包或库时,你需要导入它,导入关注模型的模型库。

from keras.models import Sequential
thtygnil

thtygnil3#

更新:适用于任何使用Tensorflow Keras的用户

from tensorflow.keras.models import Sequential

相关问题