tanluren / yolov3-channel-and-layer-pruning

yolov3 yolov4 channel and layer pruning, Knowledge Distillation 层剪枝,通道剪枝,知识蒸馏
Apache License 2.0
1.5k stars 446 forks source link

关于精度下降问题 #59

Open HeyMrYu opened 4 years ago

HeyMrYu commented 4 years ago

image 大神,请教下,我在训练时,为什么最后一个epoch的P会突然降很多,而用最终的模型去测试的结果,跟前一个epoch保存的模型的测试结果一样,没什么差别,

zbyuan commented 4 years ago

The last one adjusted the learning rate

Yipzcc commented 4 years ago

image 大神,请教下,我在训练时,为什么最后一个epoch的P会突然降很多,而用最终的模型去测试的结果,跟前一个epoch保存的模型的测试结果一样,没什么差别,

我用 test.py 测试的时候还是会有问题,请问你是怎么去做测试的?

larsonwu0220 commented 4 years ago

最後一個 epoch 的 conf_thres 調低,導致 P 降低。 train.py 第 418 行 : conf_thres=0.001 if final_epoch and epoch > 0 else 0.1, # 0.1 for speed