| Total Complexity | 0 |
| Total Lines | 7 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | """Base classes for optimizers and experiments.""" |
||
| 2 | |||
| 3 | from hyperactive.base import BaseExperiment |
||
| 4 | from ._utility import add_callback, add_catch |
||
| 5 | |||
| 6 | __all__ = ["BaseExperiment", "add_callback", "add_catch"] |
||
| 7 |