mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
17 lines
355 B
Python
17 lines
355 B
Python
from ray.rllib.algorithms.impala.impala import (
|
|
DEFAULT_CONFIG,
|
|
ImpalaConfig,
|
|
Impala as ImpalaTrainer,
|
|
)
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
|
|
__all__ = [
|
|
"ImpalaConfig",
|
|
"ImpalaTrainer",
|
|
"DEFAULT_CONFIG",
|
|
]
|
|
|
|
deprecation_warning(
|
|
"ray.rllib.agents.impala", "ray.rllib.algorithms.impala", error=False
|
|
)
|