I used to make it manually, but i am using now flow_from_directory to train my network with my own data. I just have one question. When i make model.predict(), how can i know th
You can have the the index of each class generated by the generator with class_indices property.
print(validation_generator.class_indices)
Simple...