-
- Downloads
Generalize the loss value returned from before_backward_pass callbacks (#38)
* Instead of a single additive value (which so far represented only the regularizer loss), callbacks return a new overall loss * Policy callbacks also return the individual loss components used to calculate the new overall loss. * Add boolean flag to the Scheduler's callback so applications can choose if they want to get individual loss components, or just the new overall loss * In compress_classifier.py, log the individual loss components * Add test for the loss-from-callback flow
Showing
- distiller/policy.py 24 additions, 6 deletionsdistiller/policy.py
- distiller/scheduler.py 31 additions, 9 deletionsdistiller/scheduler.py
- examples/classifier_compression/compress_classifier.py 48 additions, 37 deletionsexamples/classifier_compression/compress_classifier.py
- examples/word_language_model/main.py 5 additions, 4 deletionsexamples/word_language_model/main.py
- tests/test_loss.py 68 additions, 0 deletionstests/test_loss.py
Loading
Please register or sign in to comment