yolo2-pytorch icon indicating copy to clipboard operation
yolo2-pytorch copied to clipboard

PyTorch implementation of the YOLO (You Only Look Once) v2

Results 12 yolo2-pytorch issues
Sort by recently updated
recently updated
newest added

how about the map

I have got the densenet201_yolo.cfg and the .weights file. How to do image detection on Pytorch?? Thanks!!

Hi there, sorry about that to post this here, i was trying to write yolo in torch but struggled the backward function for so many days, but the gradients are...

Dear @ruiminshen, The [new version of YOLO](https://pjreddie.com/media/files/papers/YOLOv3.pdf) has been released (_i.e.,_ [YOLOv3](https://pjreddie.com/darknet/yolo/)). Can I use YOLOv3 cfg/weights with your code correctly?

Hi , Q1) Anchor_Boxes_Generator file generate 10 values of anchors , i have question about these values , as we have 5 anchors and this generator generate 10 values, more...

Great work on this setup. We can export the weights to Caffe2, but then how do we utilize the deployed weights in a Caffe2 instance on something like an nVidia...

When I convert pretrained darknet model with this command: python3 convert_darknet_torch.py ~/model/darknet/darknet19_448.conv.23 -m model/name=model_voc model/dnn=model.yolo2.Darknet -d --copy ~/model/darknet/darknet19_448.conv.23.pth error happened: Traceback (most recent call last): File "convert_darknet_torch.py", line 142, in...

I can't convert proper file by using your convert_darknet_torch.py . And I met the same error as #8 Could u please upload the right file darknet19_448.conv.23.pth or just fix the...

Is the following script correct to train yolo2 with mobilenet? python3 train.py -b 64 -lr 1e-3 -e 160 -m cache/name=cache_voc model/name=model_voc model/dnn=model.mobilenet.MobileNet train/optimizer='lambda params, lr: torch.optim.SGD(params, lr, momentum=0.9)' train/scheduler='lambda optimizer:...