mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
18 lines
365 B
Python
18 lines
365 B
Python
from ray.rllib.algorithms.dreamer.dreamer import (
|
|
DreamerConfig,
|
|
Dreamer as DREAMERTrainer,
|
|
DEFAULT_CONFIG,
|
|
)
|
|
|
|
__all__ = [
|
|
"DreamerConfig",
|
|
"DREAMERTrainer",
|
|
"DEFAULT_CONFIG",
|
|
]
|
|
|
|
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
"ray.rllib.agents.dreamer", "ray.rllib.algorithms.dreamer", error=False
|
|
)
|