How to provide input for the resnet50?

Hi, I am trying to execute ./bin/resnet-training and unable to figure out how to provide input for it.

./bin/resnet-training -help suggests
USAGE: resnet-training [options] --input-image-list-file Name of the file containing list of images (one image per line)
however I dont understand what a " file containing list of images." is. is it a CSV file? or just a directory containing images?

I want to train resnet50 with imagenet data

I think it’s just a file with a list of file paths comma separated with the label for that image:

/path/to/cat.png,285
/path/to/dog.png,207
/path/to/zebra.png,340
1 Like