prabindh / darknet

Convolutional Neural Networks
http://pjreddie.com/darknet/
Other
122 stars 46 forks source link

input.data #58

Closed zjtgit closed 6 years ago

zjtgit commented 6 years ago

" Copy the weights, cfg, data and image files for detection into the arapaho folder." , what is the input.data? how can I get this file?

turkishviking commented 6 years ago

Look at the original repository there is some ".data", basically it represent the dataset (testset, trainset, and more important for you, the label names). if you use a model trained on coco, use coco.data, etc... visit darknet site to know which model is trained on which dataset.

zjtgit commented 6 years ago

Got it, thanks for your reply.