So I've trained a CNN using the keras library, specifically using the .flow_from_directory()
method, where my images are stored in training_set
, validation_set
and test_set
folders, but I can't find a way to test the test_set
folder.
Do I have to create a .csv file?
I've tried using model.evaluate()
, but that doesn't seem to work using images stored in classification folders. Thanks in advance for the helps!