yolo2-pytorch
yolo2-pytorch copied to clipboard
YOLOv2 in PyTorch
compared with the darknet yolo in real time with gpu.
Hi, I cannot understand why have you done these changes? Why the exp of w and h is not needed? - wh_pred = torch.exp(conv5_reshaped[:, :, :, 2:4]) + # wh_pred...
I didn't see any related script in this projects.
A question about the implementation of targets in this project. Why do the default box targets have values of 0.5 for x, y and 1 for width and height? And...
I've been interested in using YOLO architecture for an object detection task. As a first step I decided to clone this repo and run the examples. Upon running the `train.py`...
Hi @longcw , Thank you for sharing this awesome implementations. Actually I found this is the only one which runs as fast as YOLO's original darknet C code. I have...
When multi-scale training is applied, the output feature map size also changes, so shouldn't the size of the prior anchor be modified at the same time? But why does anchors...