Huanyu Wang

Results 4 issues of Huanyu Wang

I download the code and successfully compile it, I can run the test.py file, and pass almost every test but with a small mistake(according to the annotations, it's not a...

I tested yolov4.cfg and yolov4.weights downloaded from AB, and test its mAP results with ```bash CUDA_VISIBLE_DEVICES='5' python test.py --cfg ./cfg/yolov4.cfg --weights ./weights/yolov4.weights --img-size 320 --save-json --data ./data/coco.yaml ``` (cfg file...

In file train.py, line 150 to 161, ```python if epoch % opt.evaluation_interval == 0: print("\n---- Evaluating Model ----") # Evaluate the model on the validation set precision, recall, AP, f1,...

Hi, I tried to train the MobileNeXt model in ImageNet dataset, in short, the best Top-1 is 73.0% at the 196th epoch of 200. For fast training, I set the...