YOLOv3_PyTorch icon indicating copy to clipboard operation
YOLOv3_PyTorch copied to clipboard

Full implementation of YOLOv3 in PyTorch

Results 51 YOLOv3_PyTorch issues
Sort by recently updated
recently updated
newest added

Hello. First of all, thank you for this awesome repo! I have one question. I want to change the backbone from darknet to something else. After inspected and tested the...

https://github.com/espectre/YOLOv3_PyTorch/blob/master/README.md This is the result of my training.

我原来一直在根据 https://github.com/eriklindernoren/PyTorch-YOLOv3 这个来做训练、预测,但是一直没有解决多卡训练的问题,我发现单纯的添加: model = nn.DataParallel(model, device_ids=args.device) model.cuda() 这两行,并不能为训练速度带来提升,我看您的代码有支持多卡训练,能帮忙解答下吗?感谢!

@BobLiu20 Hi , nice work, i have one question you said you did not use original darknet cfg to load the model, and you have not used and C implementation...

I've gotten image recognition to work at multiple frames/second, using a GTX 1060 with 6GB of memory. Now I'm trying to train a custom classifier but I keep running out...

@BobLiu20 How are you? I have question that i need a yolo v3 that is implemented completely on pytorch, and does not use darknet framework and its cfg parser. So,...

I was confused about why use BCE to compute the loss of 'x' & 'y', could it be MSE? https://github.com/BobLiu20/YOLOv3_PyTorch/blob/c6b483743598b5f64d520d81e7e5f47ba936d4c9/nets/yolo_loss.py#L55

When I use the code to train the voc2007 dataset,I get the result as follows: ![1](https://user-images.githubusercontent.com/31853251/55677276-7a26e500-5917-11e9-9835-28ab4e021c3d.JPG) ![2](https://user-images.githubusercontent.com/31853251/55677278-7d21d580-5917-11e9-9512-2deca8a984e6.JPG) ![3](https://user-images.githubusercontent.com/31853251/55677281-7eeb9900-5917-11e9-837b-cb7c3acbe554.JPG) ![4](https://user-images.githubusercontent.com/31853251/55677283-80b55c80-5917-11e9-856f-b4da75d2f8ae.JPG) ![5](https://user-images.githubusercontent.com/31853251/55677286-8317b680-5917-11e9-9d79-9ef88c73b647.JPG) ![6](https://user-images.githubusercontent.com/31853251/55677287-84e17a00-5917-11e9-82cd-1b043cb03177.JPG) ![7](https://user-images.githubusercontent.com/31853251/55677288-8743d400-5917-11e9-88e7-821216d5bc67.JPG) ![8](https://user-images.githubusercontent.com/31853251/55677290-890d9780-5917-11e9-9f29-efefa530d3e2.JPG) And the detected result is none!Anyone can...

在代码的yolo_loss.py中的get_target函数中为什么是`noobj_mask[b,anch_ious>ignore_threshold]=0`,而不是`noobj_mask[b,anch_ious>ignore_threshold,gi,gj]=0`,不应该只在负责预测的网格上gt和anchor的overlap才可能超过阈值吗,如果你那样写岂不是所有网格的那个anchor在计算置信度损失的时候都被忽略了。