AttributeError:“顺序”对象在 Keras Theano 中没有属性“_feed_input_names”
Posted
技术标签:
【中文标题】AttributeError:“顺序”对象在 Keras Theano 中没有属性“_feed_input_names”【英文标题】:AttributeError: 'Sequential' object has no attribute '_feed_input_names' in Keras Theano 【发布时间】:2019-07-30 10:34:48 【问题描述】:在执行语句时,
hist = model.fit(X_train, Y_train, batch_size=batch_size, epochs=nb_epoch,
verbose=1, validation_data=(X_test, Y_test))
I'm getting the error,
File "C:\Users\Parag\Anaconda3\envs\keras_theano\lib\site-packages\keras\engine\training.py", line 737, in _standardize_user_data
feed_input_names = self._feed_input_names
AttributeError: 'Sequential' 对象没有属性 '_feed_input_names'
【问题讨论】:
【参考方案1】:尝试将input_shape
参数添加到网络的第一层。这为我解决了这个问题。
【讨论】:
以上是关于AttributeError:“顺序”对象在 Keras Theano 中没有属性“_feed_input_names”的主要内容,如果未能解决你的问题,请参考以下文章
AttributeError:“顺序”对象没有属性“predict_classes”
AttributeError:“顺序”对象没有属性“输出名称”。不是toco问题
AttributeError:“顺序”对象在 Keras Theano 中没有属性“_feed_input_names”
即使使用顺序模型,我也会收到“AttributeError:'Model' object has no attribute 'predict_classes'”