Ozan Peker
Ozan Peker
@thtrieu When I tried training Yolov2 with only PascalVoc2012 Car labeled data, I get 0.000007 loss.Although,I cannot see any bounding boxes when ı tested on image.Is that means over fitting?How...
> my cfg file is: > > [net] > batch=64 > subdivisions=8 > width=416 > height=416 > channels=3 > momentum=0.9 > decay=0.0005 > angle=0 > saturation = 1.5 > exposure...
> Try increasing your dimensions to 512 > > Also increase the k to 256 at very least Thanks for your quick reply.
@lucidrains can you share usage of Distillation method in notebook example? I cannot use for this method. 
@RolandSireyjol how could you connect camera from laptop?Could you explain to me with details?
> How do I configure WBF to mmdetection Did you try this method with mmdetection json results?
> You need to convert boxes in x1, y1, x2, y2 format, then normalize (using image width and height). > > ``` > xn1 = x1 / image_width > yn1...
>  > > Iam using 1 class only, then get error using yolo weights. I dont know whats that mean > can u solve my problem?? Did you solve...
> When training, please turn on the argument"--warm" or set a larger learning rate(--learning_rate 0.5), it seems to solve this problem, at least it works for me Hi.I use this...
> I've used the SORT following this instruction: > https://github.com/abewley/sort#using-sort-in-your-own-project > I wonder can I use a similar way in my own project like I did with the SORT? Hi...