現在、すべての画像を一度に predict_generator にフィードしています。大規模なデータセットでメモリの問題が発生しないように、validation_generator に格納されている画像の小さなセットをフィードし、それらを予測できるようにしたいと考えています。次のコードをどのように変更すればよいですか?
top_model_weights_path = '/home/rehan/ethnicity.071217.23-0.28.hdf5'
path = "/home/rehan/countries/pakistan/guys/"
img_width, img_height = 139, 139
confidence = 0.8
model = applications.InceptionResNetV2(include_top=False, weights='imagenet',
input_shape=(img_width, img_height, 3))
print("base pretrained model loaded")
validation_generator = ImageDataGenerator(rescale=1./255).flow_from_directory(path, target_size=(img_width, img_height),
batch_size=32,shuffle=False)
print("validation_generator")
features = model.predict_generator(validation_generator,steps=10)