【问题标题】:ValueError: Error when checking input: expected conv2d_3_input to have shape (100, 100, 1) but got array with shape (100, 100, 3)ValueError:检查输入时出错:预期 conv2d_3_input 的形状为 (100, 100, 1) 但得到的数组的形状为 (100, 100, 3)
【发布时间】:2020-04-28 23:29:03
【问题描述】:

当我尝试编写用于图像识别的神经网络时,出现错误:

ValueError:检查输入时出错:预期 conv2d_3_input 的形状为 (100, 100, 1),但得到的数组的形状为 (100, 100, 3)。

我所有的图像都是greyscale,大小为100x100 像素。 代码如下:

# Importing the Keras libraries and packages
import tensorflow as tf
from keras.models import Sequential
from keras.layers import Conv2D
from keras.layers import MaxPooling2D
from keras.layers import Flatten
from keras.layers import Dense
# Initialising the CNN
classifier = Sequential()
# Step 1 - Convolution
classifier.add(Conv2D(32, (3, 3), input_shape = (100, 100, 1), activation = 'relu'))
# Step 2 - Pooling
classifier.add(MaxPooling2D(pool_size = (2, 2)))
# Adding a second convolutional layer
classifier.add(Conv2D(32, (3, 3), activation = 'relu'))
classifier.add(MaxPooling2D(pool_size = (2, 2)))
# Step 3 - Flattening
classifier.add(Flatten())
# Step 4 - Full connection
classifier.add(Dense(units = 128, activation = 'relu'))
classifier.add(Dense(units = 1, activation = 'sigmoid'))
# Compiling the CNN
classifier.compile(optimizer = 'adam', loss = 'binary_crossentropy', metrics = ['accuracy'])
# Part 2 - Fitting the CNN to the images
from keras.preprocessing.image import ImageDataGenerator
train_datagen = ImageDataGenerator(rescale = 1./255,
shear_range = 0.2,
zoom_range = 0.2,
horizontal_flip = True)
test_datagen = ImageDataGenerator(rescale = 1./255)
training_set = train_datagen.flow_from_directory('E:/exercise/dataset/train',
target_size = (100, 100),
batch_size = 32,
color_mode = "grayscale",
class_mode = 'binary')
test_set = test_datagen.flow_from_directory('E:/exercise/dataset/test',
target_size = (100, 100),
color_mode = "grayscale",
batch_size = 32,
class_mode = 'binary')
classifier.fit_generator(training_set,
steps_per_epoch = 40,
epochs = 10,                                                                                   
validation_data = test_set,
validation_steps = 8)

import numpy as np
from keras.preprocessing import image                           
test_image = image.load_img('E:/exercise/predict_2.jpg', target_size = (100, 100))
test_image = image.img_to_array(test_image)
test_image = np.expand_dims(test_image, axis = 0)
result = classifier.predict(test_image)
training_set.class_indices                                   
if result[0][0] >= 0.5: prediction = 'happy'
else: prediction = 'sad'
print(prediction)  

任何人都可以告诉我如何解决这个问题。谢谢大家!

【问题讨论】:

    标签: python python-3.x keras neural-network image-recognition


    【解决方案1】:

    尝试为train_datagentest_datagen 将参数preprocessing_function=gray_to_rgb 添加到ImageDataGenerator,如下:

    def rgb_to_gray(rgb):     # Using the luminosity formula: grayscale =  0.21 R + 0.72 G + 0.07 B
        return np.dot(rgb[...,:3], [0.299, 0.587, 0.114])
    
    train_datagen = ImageDataGenerator(rescale = 1./255,
    shear_range = 0.2,
    zoom_range = 0.2,
    horizontal_flip = True,
    preprocessing_function=rgb_to_gray)
    test_datagen = ImageDataGenerator(rescale = 1./255, preprocessing_function=rgb_to_gray)
    

    【讨论】:

    • 感谢您的帮助。但是当我运行代码时,还有另一个问题是 ValueError: shape (100,100,1) and (3,) not aligned: 1 (dim 2) != 3 (dim 0)
    猜你喜欢
    • 2021-10-14
    • 2019-02-25
    • 2020-07-05
    • 1970-01-01
    • 1970-01-01
    • 2018-10-24
    • 2020-04-11
    • 2020-05-17
    • 2020-11-22
    相关资源
    最近更新 更多