HOW: custom logger that shows learning rate during training + Option for saving training results? #12937
Answered
by
shadeMe
PeachDew
asked this question in
Help: Coding & Implementations
-
Beta Was this translation helpful? Give feedback.
Answered by
shadeMe
Aug 28, 2023
Replies: 1 comment 5 replies
-
Hi, you can take a look at the There is no built-in mechanism to save the training score/loss history, but this info is passed to the logger. So, one could write a custom logger to save this information in a more structured manner. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
shadeMe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, you can take a look at the
spacy-loggers
repository for examples on how to implement a custom logger.There is no built-in mechanism to save the training score/loss history, but this info is passed to the logger. So, one could write a custom logger to save this information in a more structured manner.