clarena.callbacks
Callbacks
This submodule provides callbacks that can be used in CLArena.
Please note that this is an API documantation. Please refer to the main documentation page for more information about the callbacks and how to use and customize them:
- Configure your callbacks: https://pengxiang-wang.com/projects/continual-learning-arena/docs/configure-your-experiments/callbacks
- Implement your callbacks: https://pengxiang-wang.com/projects/continual-learning-arena/docs/implement-your-cl-modules/callbacks
1""" 2 3# Callbacks 4 5This submodule provides **callbacks** that can be used in CLArena. 6 7Please note that this is an API documantation. Please refer to the main documentation page for more information about the callbacks and how to use and customize them: 8 9- **Configure your callbacks:** [https://pengxiang-wang.com/projects/continual-learning-arena/docs/configure-your-experiments/callbacks](https://pengxiang-wang.com/projects/continual-learning-arena/docs/configure-your-experiments/callbacks) 10- **Implement your callbacks:** [https://pengxiang-wang.com/projects/continual-learning-arena/docs/implement-your-cl-modules/callbacks](https://pengxiang-wang.com/projects/continual-learning-arena/docs/implement-your-cl-modules/callbacks) 11 12 13""" 14 15from .cl_rich_progress_bar import CLRichProgressBar 16from .image_show import ImageShowCallback 17from .metrics import MetricsCallback 18from .pylogger import PyloggerCallback 19 20__all__ = []