Kerasで機械学習による画像分類を行っています。
データ数が少ないという問題に対してKerasのImageDataGeneratorクラスを利用してデータ拡張を行う際に疑問が生まれました。
Kerasの公式サイトにてflow関数の使用例として以下のような例が挙げられています。
ここにおけるデータの拡張とは、例えばデータ自体を何枚に拡張するといったことではなく、学習のためにデータを与えるたびに、ランダムでオーギュメンテーションを行うという認識で問題ないでしょうか?
Python
1(x_train, y_train), (x_test, y_test) = cifar10.load_data() 2y_train = np_utils.to_categorical(y_train, num_classes) 3y_test = np_utils.to_categorical(y_test, num_classes) 4 5datagen = ImageDataGenerator( 6 featurewise_center=True, 7 featurewise_std_normalization=True, 8 rotation_range=20, 9 width_shift_range=0.2, 10 height_shift_range=0.2, 11 horizontal_flip=True) 12 13# compute quantities required for featurewise normalization 14# (std, mean, and principal components if ZCA whitening is applied) 15datagen.fit(x_train) 16 17# fits the model on batches with real-time data augmentation: 18model.fit_generator(datagen.flow(x_train, y_train, batch_size=32), 19 steps_per_epoch=len(x_train) / 32, epochs=epochs) 20
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/10 12:40