ray/rllib/algorithms/ddpg/__init__.py

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

15 lines
377 B
Python
Raw Normal View History

from ray.rllib.algorithms.ddpg.apex import ApexDDPGConfig, ApexDDPGTrainer
from ray.rllib.algorithms.ddpg.ddpg import DDPGConfig, DDPGTrainer, DEFAULT_CONFIG
2022-05-23 10:07:13 +02:00
from ray.rllib.algorithms.ddpg.td3 import TD3Config, TD3Trainer
__all__ = [
"ApexDDPGConfig",
"ApexDDPGTrainer",
"DDPGConfig",
"DDPGTrainer",
"DEFAULT_CONFIG",
2022-05-23 10:07:13 +02:00
"TD3Config",
"TD3Trainer",
]