ray/rllib/agents/ddpg/__init__.py

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

23 lines
611 B
Python
Raw Normal View History

import ray.rllib.agents.ddpg.apex as apex # noqa
import ray.rllib.agents.ddpg.td3 as td3 # noqa
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
__all__ = [
"ApexDDPGTrainer",
"DDPGConfig",
"DDPGTrainer",
"DEFAULT_CONFIG",
"TD3Trainer",
]
from ray.rllib.utils.deprecation import deprecation_warning
deprecation_warning("ray.rllib.agents.ddpg", "ray.rllib.algorithms.ddpg", error=False)