Good day, I am struggling to execute the training script with my custom dataset. I have just over 3000 images that have been annotated using Roboflow and my goal is to deploy the trained model to my Jetson nano.
I am training on google colab and have ensured that my dataset was exported in Pascal VOC format (as required for custom datasets) with train, test and validate sets.
When I execute the following command:
!python train_ssd.py --dataset-type=voc --data=Project-3/ --model-dir=models/ --batch-size=4 --num-epochs=1
I get the following error message:
OSError: missing ImageSet file Project-3/ImageSets/Main/trainval.txt
It does appear that datasets exported from Roboflow do not have text files for labels. How could I alter my current dataset to ensure that it works with the code?