ray/rllib/algorithms/alpha_zero/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
293 B
Python
Raw Normal View History

from ray.rllib.algorithms.alpha_zero.alpha_zero import (
AlphaZero,
AlphaZeroConfig,
DEFAULT_CONFIG,
)
from ray.rllib.algorithms.alpha_zero.alpha_zero_policy import AlphaZeroPolicy
__all__ = [
"AlphaZero",
"AlphaZeroConfig",
"AlphaZeroPolicy",
"DEFAULT_CONFIG",
]