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

thanks for your work. do you have the plan to support the VOC dataset?

Thank you for your sharing. I want to change the batch size to. But the memory is out of size. In the Darknet, there's a parameter called "subdivisions". Do you...

the result AP0.5 =0.262,AP0.5-0.95=0.119

Dear @BobLiu20 , thanks for sharing your code. It's wonderful, however I think there might be a bug in the loss related block of training.py: ```losses_name = ["total_loss", "x", "y",...

@BobLiu20 Thanks for your code, but your mAP computing is actually recall at specific confidence threshold, which is totally different from mAP. Here is my test results on your models...

想在VOC上进行训练,不知怎么操作?

Hey, I modified the eval script a bit to run some predictions and test the FPS a bit. I was getting much lower FPS than what is quoted in https://github.com/eriklindernoren/PyTorch-YOLOv3...

Thank you for your great code, when I run python test_images.py params.py, I encountered the error below, my matplotlib's version is 2.0.0. After I changed tab20b to Vega20b arbitrarily, I...

When you calculate loss, the code about `tw` and `th` like this: ``` # Width and height tw[b, best_n, gj, gi] = math.log(gw/anchors[best_n][0] + 1e-16) th[b, best_n, gj, gi] =...

I get this when I try to run the evals.py file. I have tried this on both the CUDA 8.0 and the CUDA 9.0 versions of pytorch, no dice. >...