I want to code an image anomaly detection with autoencoder.
Therefore I splitted my images into one subfolder for trainining images, one for validation images and one for anomaly images.
history = model.fit(
train_generator,
steps_per_epoch=500 // batch_size,
epochs=1000,
validation_data=validation_generator,
validation_steps=75 // batch_size,
shuffle=True)
For model.fit
I need an seperated train_generator
and validation_generator
For getting train_generator I am using this one.
train_generator = datagen.flow_from_directory(
'C:/Python/Anomaly_dection_V1/cell_images/Uninfected_Train/',
target_size=(SIZE, SIZE),
color_mode='rgb',
batch_size=batch_size,
class_mode='input',
)
So I take the images directly from the subfolder, where just images and no other folders are located.
Sadly I get the following message: Found 0 images belonging to 0 classes.
Can anyone help me out?
If I take one folder above instead of the subfolder, it can find images from three classes. But for the model.fit I need just the train data and the validatio data. I didnt find any solution just to use the subfolders/classes for that.
Is flow_from_directory
not working to get images from just one subfolder?
You can access the specific single folder images using
image_dataset_from_directory
by specifying thelabels = None
as below:This way you can also split the dataset of that folder into train and validation portion using
validation_split=0.2
.Training data :
Output:
Validation dataset:
Output: