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
Same question has been asked here and here . These repositories (I think you already know them) are other attempts to implement knowledge distillation algorithms.
Could you please explain why it used log_softmax instead of softmax?
To avoid underflow issues when computing this quantity, this loss expects the argument input in the log-space. The argument target may also be provided in the log-space if log_target= True.
Also, please use Discussions above (instead of Issues) for questions.
As explained here, I want to keep Issues mainly for bug reports.
Same question has been asked here and here . These repositories (I think you already know them) are other attempts to implement knowledge distillation algorithms.
Could you please explain why it used
log_softmax
instead ofsoftmax
?torchdistill/torchdistill/losses/single.py
Lines 99 to 106 in 993ee94
The text was updated successfully, but these errors were encountered: