mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
18 lines
374 B
Python
18 lines
374 B
Python
from ray.rllib.algorithms.alpha_star.alpha_star import (
|
|
AlphaStarConfig,
|
|
AlphaStarTrainer,
|
|
DEFAULT_CONFIG,
|
|
)
|
|
|
|
__all__ = [
|
|
"AlphaStarConfig",
|
|
"AlphaStarTrainer",
|
|
"DEFAULT_CONFIG",
|
|
]
|
|
|
|
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
"ray.rllib.agents.alpha_star", "ray.rllib.algorithms.alpha_star", error=False
|
|
)
|