| Total Complexity | 0 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | """Base classes for optimizers and experiments.""" |
||
| 2 | # copyright: hyperactive developers, MIT License (see LICENSE file) |
||
| 3 | |||
| 4 | from hyperactive.base._experiment import BaseExperiment |
||
| 5 | from hyperactive.base._optimizer import BaseOptimizer |
||
| 6 | |||
| 7 | __all__ = ["BaseExperiment", "BaseOptimizer"] |
||
| 8 |