Hello,
For our use case, we are trying to detect a type of pipe join/weld in an image. The input images are all non-georeferenced.
Based on prior recommendations by Esri, we labeled the input images (~900) using the LabelImg tool and the labels get saved as xml documents. I tried to train the model with the input images and the generated labels by following this tutorial: (https://developers.arcgis.com/python/sample-notebooks/automate-road-surface-investigation-using-deep-learning/).
One thing to point out.. on the prepare_data(data_path, batch_size=8, chip_size=500, seed=42, dataset_type='PASCAL_VOC_rectangles'), data_path points to source images and it's annotations. It is not clear from the tutorial if we need to generate and use image chips instead. But it didn't throw any errors.
After downloading SSD model, when I try to call ssd.show_results(thresh=0.2), I get the error below:

Do we need to export the training data as image chips prior to calling the prepare_data()? Does it have any relation to the error above?
Thanks for any input!
Anusha