Tane van der Boon

Results 8 comments of Tane van der Boon

Here is a pyhton script to convert from VoTT CSV to Yolo label txt files. ``` from PIL import Image from os import path, makedirs import os import re import...

@MurreyCode you don't need to adjust height and width differently in your config or resize your database images. YOLO architecture does it by itself keeping the aspect ratio safe (no...

@maheshmechengg you can increase resolution as much as you like as long as it’s divisible by 32. But you will need to decrease your batch size. As you increase your...

> Hi Alexey, > > I have a question about .cfg file of YoloV3. How does changing width or height effect the model? Isn't it taking fixed shape images as...

Hi @vongracia Few things: - 416x416 is quite a low resolution. - Use a resolution that is in a similar aspect ratio. e.g. 640 x 480 (or larger if you...

@vongracia 1. Are you using this repo? You should be using: https://github.com/AlexeyAB/darknet 2. Use a tiny yolo model. You can have a bigger batch size and training will be faster...

@saktheeswaranswan Are you using this repo? You should be using: https://github.com/AlexeyAB/darknet

@marcoslucianops I dont think you need to support idetect :). From my understanding Idetect is for training, detect is for inference (faster) as per the scripts in the cfg/deploy folder...