问题描述
我目前正在尝试使用我自己生成的数据集来跟踪此处的示例.后端使用Theano运行.目录结构完全相同:
I'm currently trying to follow the example here using a dataset I generated by myself. The back end is run using Theano. The directory structure is exactly the same:
image_sets/
dogs/
dog001.jpg
dog002.jpg
...
cats/
cat001.jpg
cat002.jpg
...
validation/
dogs/
dog001.jpg
dog002.jpg
...
cats/
cat001.jpg
这是我的keras卷积神经网络代码.
Here is my code for the keras convolutional neural network.
img_width, img_height = 150, 150
img_width, img_height = 150, 150
train_data_dir = './image_sets'
validation_data_dir = './validation'
nb_train_samples = 267
print nb_train_samples
#number of validation images I have
nb_validation_samples = 2002
print nb_validation_samples
nb_epoch = 50
# from keras import backend as K
# K.set_image_dim_ordering('th')
model = Sequential()
model.add(Convolution2D(32, 3, 3, input_shape=(3,img_width, img_height)))
model.add(Activation('relu'))
model.add(MaxPooling2D(pool_size=(2, 2)))
model.add(Convolution2D(32, 3, 3))
model.add(Activation('relu'))
model.add(MaxPooling2D(pool_size=(2, 2)))
model.add(Convolution2D(64, 3, 3))
model.add(Activation('relu'))
model.add(MaxPooling2D(pool_size=(2, 2)))
model.add(Flatten())
model.add(Dense(64))
model.add(Activation('relu'))
model.add(Dropout(0.5))
model.add(Dense(1))
model.add(Activation('sigmoid'))
model.compile(loss='binary_crossentropy',
optimizer='rmsprop',
metrics=['accuracy'])
train_datagen = ImageDataGenerator(
rescale=1./255,
shear_range=0.2,
zoom_range=0.2,
horizontal_flip=True)
test_datagen = ImageDataGenerator(rescale=1./255)
train_generator = train_datagen.flow_from_directory(
train_data_dir,
target_size=(img_width, img_height),
batch_size=32,
class_mode='binary')
validation_generator = test_datagen.flow_from_directory(
validation_data_dir,
target_size=(img_width, img_height),
batch_size=32,
class_mode='binary')
model.fit_generator(
train_generator,
samples_per_epoch=nb_train_samples,
nb_epoch=nb_epoch,
validation_data=validation_generator,
nb_val_samples=nb_validation_samples)
model.save_weights('first_try.h5')
推荐答案
我在运行代码时遇到了相同的问题,但我使用的是tensorflow作为后端.我的问题是我在旧版本的keras上运行它.
I ran into the same problem while running the code but i was using tensorflow as backend. My problem was that i was running it on an older version of keras.
通过升级到keras 2.0
Upgrade to keras 2.0 by
pip install --upgrade keras
然后如下更新您的fit_generator
函数-
Then update your fit_generator
function as follows-
model.fit_generator(generator=train_generator,
steps_per_epoch=2048 // 16,
epochs=20,
validation_data=validation_generator,
validation_steps=832//16)
这里,16是您的batch_size.
Here, 16 is your batch_size.
您可以通过fchollet找到完整的更新代码:此处.
You can find the complete updated code by fchollet : Here.
这篇关于Keras imageGenerator异常:generator的输出应为元组(x,y,sample_weight)或(x,y).找到:无的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!