2022-06-11 15:10:39 +02:00
|
|
|
import ray.rllib.agents.ddpg.apex as apex # noqa
|
|
|
|
import ray.rllib.agents.ddpg.td3 as td3 # noqa
|
2022-06-04 07:35:24 +02:00
|
|
|
from ray.rllib.algorithms.apex_ddpg.apex_ddpg import ApexDDPG as ApexDDPGTrainer
|
|
|
|
from ray.rllib.algorithms.ddpg.ddpg import (
|
|
|
|
DDPGConfig,
|
|
|
|
DDPG as DDPGTrainer,
|
|
|
|
DEFAULT_CONFIG,
|
|
|
|
)
|
|
|
|
from ray.rllib.algorithms.td3.td3 import TD3 as TD3Trainer
|
2018-04-11 15:08:39 -07:00
|
|
|
|
2022-05-12 16:12:42 +02:00
|
|
|
|
2020-04-16 10:20:01 +02:00
|
|
|
__all__ = [
|
|
|
|
"ApexDDPGTrainer",
|
2022-05-12 16:12:42 +02:00
|
|
|
"DDPGConfig",
|
2020-04-16 10:20:01 +02:00
|
|
|
"DDPGTrainer",
|
|
|
|
"DEFAULT_CONFIG",
|
|
|
|
"TD3Trainer",
|
|
|
|
]
|
2022-05-19 09:30:42 -07:00
|
|
|
|
|
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
|
|
|
|
deprecation_warning("ray.rllib.agents.ddpg", "ray.rllib.algorithms.ddpg", error=False)
|