Replies: 1 comment 9 replies
-
|
@haimat the most frequent callback is probably on_batch_end, so you might put a listener there. |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to control YOLOv5 training from another process (i.e. a custom training GUI), so I am playing with the
utils.callbacks.Callbacksclass utilized intrain.py. I know that one can get infos on training status and progress via that callback class, however, is there also a way to stop the training process before all epochs are done?If the
Callbacksclass is not what I am looking for in this context, what other approach should I follow to stop training from another process? I would rather not send aSIGKILLsignal to the training process ...Beta Was this translation helpful? Give feedback.
All reactions