Skip to content

ENH: priority system for callbacks #47

Description

@Xylambda

Right now, callbacks are executed in the same order they are passed to the Trainer. This can cause problems if, for instance, a logger callbacks is passed before the loss was modified by another callback, displaying an incorrect loss value.

The idea would be to establish a priority system for the callbacks. At the beginning of the training, the Trainer would sort the list of callbacks by their priorities.

class CallbackPriority:
    REGULARIZATION = 1
    SCHEDULING = 2
    PROGRESS = 3

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions