Source code for catalyst.core.trial
from abc import ABC
# Optuna, Ray, Hyperopt
[docs]class ITrial(ABC):
"""An abstraction that syncs experiment run with different hyperparameter search systems."""
pass
__all__ = ["ITrial"]
from abc import ABC
# Optuna, Ray, Hyperopt
[docs]class ITrial(ABC):
"""An abstraction that syncs experiment run with different hyperparameter search systems."""
pass
__all__ = ["ITrial"]