- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 656
 
Closed
Labels
Description
Idea is to provide the following flexibility:
@trainer.on(Events.ITERATION_STARTED(once=1) | Events.ITERATION_STARTED(every=10) | Events.COMPLETED)
def execute_some_handler(_):
    passsuch that execute_some_handler is triggered at the first iteration and at 10th, 20th, ...etc and in the end of the training.
Evpok