我正在尝试在Google Cloud Datalab上运行我的自动编码器。我只是不知道如何使用Keras图像数据生成器。我将所有图像上传到了Google Cloud Bucket。我只是不知道如何访问我的数据。
datagen = ImageDataGenerator(rescale=1./255)
training_set = datagen.flow_from_directory(
r'DIR',
target_size=(112,112),
batch_size=32,
class_mode='input')
test_set = datagen.flow_from_directory(
r'DIR',
target_size=(112,112),
batch_size=32,
class_mode='input')
我不知道是否有解决此问题的简单方法。我不介意不使用图像数据生成器,并且愿意接受所有可能的解决方案。非常感谢您的时间和事先的帮助。