rykov8 / ssd_keras

Port of Single Shot MultiBox Detector to Keras
MIT License
1.1k stars 553 forks source link

SSD_training: FileNotFoundError: [Errno 2] No such file or directory: '../../frames/frame02374.png' #86

Open jtara1 opened 7 years ago

jtara1 commented 7 years ago

In cell 6 of SSD_training.ipynb there's a variable that seems to be a directory.

path_prefix = '../../frames/'

And when I run all cells I get the error:

FileNotFoundError: [Errno 2] No such file or directory: '../../frames/frame02374.png'

There's a parameter in the Generator class that uses the same value. Changing this value to a real folder doesn't help since the image file isn't found.

Am I missing some data or something?

jogundas commented 7 years ago

You have to provide your own data to train on; the author could not include his images due to an NDA, as discussed on some previous Issues.

alexiskattan commented 7 years ago

Are there any instructions on how to provide your own data?

jogundas commented 7 years ago

@alexiskattan : no, there are no explicit instructions. You might have more luck with pure tensorflow implementation here.