(self, processor)
| 331 | |
| 332 | class SaveProcessorCallback(TrainerCallback): |
| 333 | def __init__(self, processor): |
| 334 | self.processor = processor |
| 335 | |
| 336 | def on_save(self, args, state, control, **kwargs): |
| 337 | if state.is_world_process_zero: |
nothing calls this directly
no outgoing calls
no test coverage detected