简体   繁体   English

如何在Keras中预处理VGG16微调训练集?

[英]How to preprocess training set for VGG16 fine tuning in Keras?

I have fine tuned the Keras VGG16 model, but I'm unsure about the preprocessing during the training phase. 我对Keras VGG16型号进行了很好的调整,但我不确定在训练阶段的预处理。

I create a train generator as follow: 我创建了一个火车发电机如下:

train_datagen = ImageDataGenerator(rescale=1./255)
train_generator = train_datagen.flow_from_directory(
        train_folder,
        target_size=(IMAGE_SIZE, IMAGE_SIZE),
        batch_size=train_batchsize,
        class_mode="categorical"
    )

Is the rescale enough or I have to apply others preprocessing functions? 重新缩放是否足够或我必须应用其他预处理功能?

When I use the network to classify an image I use this code: 当我使用网络对图像进行分类时,我使用以下代码:

from keras.models import load_model
from keras.preprocessing import image
from keras.applications.vgg16 import preprocess_input
import numpy as np

img = image.load_img(img_path, target_size=(224, 224))
x = image.img_to_array(img)
x = np.expand_dims(x, axis=0)
x = preprocess_input(x)
preds = model.predict(x)

I think this is the correct preprocess and I should apply it before training. 我认为这是正确的预处理,我应该在训练之前应用它。

Thanks for your help. 谢谢你的帮助。

ImageDataGenerator has a preprocessing_function argument which allows you to pass the same preprocess_input function that you are using during inference. ImageDataGenerator有一个preprocessing_function参数,允许您传递在推理期间使用的相同preprocess_input函数。 This function will do the rescaling for you, so can omit the scaling: 此功能将为您进行重新缩放,因此可以省略缩放:

from keras.applications.vgg16 import preprocess_input
train_datagen = ImageDataGenerator(preprocessing_function=preprocess_input)

Most of the pretrained models in keras_applications use the same preprocessing function . keras_applications中的大多数训练模型使用相同的预处理函数 You can inspect the docstring to see what it does: 您可以检查docstring以查看它的作用:

def preprocess_input(x, data_format=None, mode='caffe', **kwargs):
    """Preprocesses a tensor or Numpy array encoding a batch of images.
    # Arguments
        x: Input Numpy or symbolic tensor, 3D or 4D.
            The preprocessed data is written over the input data
            if the data types are compatible. To avoid this
            behaviour, `numpy.copy(x)` can be used.
        data_format: Data format of the image tensor/array.
        mode: One of "caffe", "tf" or "torch".
            - caffe: will convert the images from RGB to BGR,
                then will zero-center each color channel with
                respect to the ImageNet dataset,
                without scaling.
            - tf: will scale pixels between -1 and 1,
                sample-wise.
            - torch: will scale pixels between 0 and 1 and then
                will normalize each channel with respect to the
                ImageNet dataset.
    # Returns
        Preprocessed tensor or Numpy array.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM