Here is my only 1 class yolov4-tiny model screenshots:
As the Yolov4 paper in Table 1 said, CSPDarknet53 has 27.6 M. I want to know how to calcualte model parameters like that.
I search the issue and got similar question about yolov3-tiny, but I still don't know the calculation of parameter on each layer.
https://github.com/AlexeyAB/darknet/issues/6022
And I search the way how to calculate conv and route layer, I got the formula as follows:
1 Conv=filter kernel-width kernel-height * output-channel
2 route = output-channel
And I got the result from the picture I post, it is 6686504, about 6.68M.
Here is my only 1 class yolov4-tiny model screenshots:
As the Yolov4 paper in Table 1 said, CSPDarknet53 has 27.6 M. I want to know how to calcualte model parameters like that. I search the issue and got similar question about yolov3-tiny, but I still don't know the calculation of parameter on each layer. https://github.com/AlexeyAB/darknet/issues/6022
And I search the way how to calculate conv and route layer, I got the formula as follows: 1 Conv=filter kernel-width kernel-height * output-channel 2 route = output-channel
And I got the result from the picture I post, it is 6686504, about 6.68M.
Does it right?
Thanks.