mirror of
https://github.com/wassname/ray.git
synced 2026-06-29 08:31:42 +08:00
1ef9c0729d
Introduces a minimally invasive utility for logging experiment results. A broad requirement for this tool is that it should integrate seamlessly with Tune execution.
19 lines
718 B
Python
19 lines
718 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from ray.tune.error import TuneError
|
|
from ray.tune.tune import run_experiments, run
|
|
from ray.tune.experiment import Experiment
|
|
from ray.tune.registry import register_env, register_trainable
|
|
from ray.tune.trainable import Trainable
|
|
from ray.tune.suggest import grid_search
|
|
from ray.tune.sample import (function, sample_from, uniform, choice, randint,
|
|
randn)
|
|
|
|
__all__ = [
|
|
"Trainable", "TuneError", "grid_search", "register_env",
|
|
"register_trainable", "run", "run_experiments", "Experiment", "function",
|
|
"sample_from", "track", "uniform", "choice", "randint", "randn"
|
|
]
|