ssd-tensorflow
ssd-tensorflow copied to clipboard
error in source_pascal_voc.py
I am trying to output test statictics of the entire VOC test data
in function load_test_data in file source_pascal_voc.py there is a line:
root = data_dir + '/test/VOCdevkit/VOC2012'
however the VOC 2012 has no test data but the 2007 data has. Could it be an error and you intended it to be
root = data_dir + '/test/VOCdevkit/VOC2007'
changing the line works for me
I think that is typo or sth that needs to be fixed.