First of all, thank you for your work.
However, I tried to get the total number of parameters of the BiSeNet(Xception39 based) with 19 classes(Cityscapes) by using
pytorch_total_params = sum(p.numel() for p in model.parameters() if p.requires_grad),
the result is 1.54 M.
It is not the same as 5.8 M in paper.
How did you measure the number of parameters?
First of all, thank you for your work. However, I tried to get the total number of parameters of the BiSeNet(Xception39 based) with 19 classes(Cityscapes) by using
pytorch_total_params = sum(p.numel() for p in model.parameters() if p.requires_grad)
, the result is 1.54 M. It is not the same as 5.8 M in paper. How did you measure the number of parameters?