pytorch-yolo-v3 icon indicating copy to clipboard operation
pytorch-yolo-v3 copied to clipboard

A PyTorch implementation of the YOLO v3 object detection algorithm

Results 105 pytorch-yolo-v3 issues
Sort by recently updated
recently updated
newest added
trafficstars

Running [video_demo.py](https://github.com/ayooshkathuria/pytorch-yolo-v3/blob/master/video_demo.py) Even after Reducing the NMS to 0.01, I am getting different labels for the same object in a frame. Getting confused as to where the actual prediction code...

emm, I curious about why Darknet model was generated by cfg-file, why not we write it in a normal as other basenets ???

it seems configuration files about Tiny, Yolo, etc.. are based on yolo version 2 and codes are based on version 3. Configuration files are slightly different. So if you try...

Solve the saving bug in windows. Try a different way to get the target directory and use the original name to be the new name. What's more, the new code...

If I want to save the coordinates of the boxes as csv or txt files, how can I write code to realize it?

So when i ran cam_demo.py , i got this error im_dim = im_dim.cuda() NameError: name 'im_dim' is not defined Can someone give me an answer for this error,thks

Hello I don't want a picture or webcam detection. Can I have Windows detect it in the active window? Like in these codes. Can you look at this sample? https://www.codepile.net/pile/mz3KN0zd

HI, I trained my database using darknet (Tiny Yolo v3) and I got the weight file. however when I used the same weight file in pytorch, the system is not...

awsome work! but can you tell me? In the file [darknet.py](https://github.com/ayooshkathuria/pytorch-yolo-v3/blob/master/darknet.py) and in the method *create_modules* , you calculate the pad like this ` if padding: pad = (kernel_size -...

Hey I ran the detect.py script on windows machine and no images were being output. I found the error, it's on line 302 of detect.py: ``` det_names = pd.Series(imlist).apply(lambda x:...