gpt4 book ai didi

python-3.x - 名称 'Sequential' 未定义 Python3 Keras

转载 作者:行者123 更新时间:2023-12-04 11:18:38 30 4
gpt4 key购买 nike

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()有问题。多次确认没有输入错误的引用库,不知道哪里出错了。

最佳答案

你应该导入它。

from keras.models import Sequential

关于python-3.x - 名称 'Sequential' 未定义 Python3 Keras,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60861760/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com