AlexeyAB / yolo2_light

Light version of convolutional neural network Yolo v3 & v2 for objects detection with a minimum of dependencies (INT8-inference, BIT1-XNOR-inference)
MIT License
301 stars 116 forks source link

About entropy calibrate #66

Open andylai0212 opened 5 years ago

andylai0212 commented 5 years ago

In the network_calibrate_cpu() , it will calculate the best multiplier of each calibrate image and average them to get final multiplier. Will it be better to use all calibrate images at once and get the histogram and calculate the multiplier?

AlexeyAB commented 5 years ago

Yes, it may be better. You can try and compare. If it will be better you can make Pull request

andylai0212 commented 5 years ago

Ok thanks. I will try it.