ayooshkathuria / pytorch-yolo-v3

A PyTorch implementation of the YOLO v3 object detection algorithm
3.3k stars 1.06k forks source link

my det folder was created but my image output not store in det folder #136

Open JeegsSheth opened 4 years ago

JeegsSheth commented 4 years ago

hii ,my det folder was created but my image output not store in det folder? and i also like to know how to train data to model because i work on bird detection so i can't understand how to train my model and how to prepare my dataset so please help me!!!!

RubickLuo commented 4 years ago

Such problems may occur when you run this project in Windows. You just need to change line 302 to:

det_names = pd.Series(os.listdir(args.images)).apply(lambda x: "{}/det_{}".format(args.det, x))