You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I see that the number of parameters of the HLTP teacher model is 149.50K and the number of parameters of the student model is 85.97K in Table IV of your paper. Could you please make your parameter calculation code public? Because the number of parameters I calculated myself is quite large. Looking forward to your reply.
The text was updated successfully, but these errors were encountered:
Regarding your question about the parameter count, it seems that there may be an issue with how the parameters were calculated on your end. The parameter counting process we used is fairly straightforward, relying on standard packages for testing, so we didn't explicitly include this code in the repository.
I would recommend double-checking your method for counting the parameters. You can try using built-in functions in libraries like PyTorch (e.g., torchsummary.summary() or model.parameters()), which should give you an accurate count of the model parameters.
Regarding your question about the parameter count, it seems that there may be an issue with how the parameters were calculated on your end. The parameter counting process we used is fairly straightforward, relying on standard packages for testing, so we didn't explicitly include this code in the repository.
I would recommend double-checking your method for counting the parameters. You can try using built-in functions in libraries like PyTorch (e.g., torchsummary.summary() or model.parameters()), which should give you an accurate count of the model parameters.
Hello, I used the following parameter code:
total_params = sum(p.numel() for p in net.parameters())
print(f"Total parameters: {total_params / 1e3:.2f}K"),
But the obtained teacher model has 2908.65K parameters, which is quite different from the 149.50K in your paper. Is there something wrong with my code? Looking forward to your reply.
Hello, I see that the number of parameters of the HLTP teacher model is 149.50K and the number of parameters of the student model is 85.97K in Table IV of your paper. Could you please make your parameter calculation code public? Because the number of parameters I calculated myself is quite large. Looking forward to your reply.
The text was updated successfully, but these errors were encountered: