Pavel

Results 4 comments of Pavel

try change strides in train.py (from [8, 16, 32] to [32, 16, 8] > I am still not able to solve this problem. Any one know this?

> Hello @Tianxiaomo, I am trying to train my custom dataset using tiny-yolo-v4. I have made changes in the .cfg file and trying to train the network. The following error...

I had the same issue when trying to train tiny yolov4 model and [this post](https://github.com/Tianxiaomo/pytorch-YOLOv4/issues/427#issuecomment-966847733) helped me. I added hsv = list(hsv) and the error vanished

Train.py is written very bad, so you should change _fsize_ to for example _f_width_ and _f_height_, and then make corresponding changes in init, build_target and forward functions > I have...