ray/rllib/algorithms/ddpg/__init__.py

13 lines
311 B
Python
Raw Normal View History

from ray.rllib.algorithms.ddpg.apex import ApexDDPGTrainer
from ray.rllib.algorithms.ddpg.ddpg import DDPGConfig, DDPGTrainer, DEFAULT_CONFIG
from ray.rllib.algorithms.ddpg.td3 import TD3Trainer
__all__ = [
"ApexDDPGTrainer",
"DDPGConfig",
"DDPGTrainer",
"DEFAULT_CONFIG",
"TD3Trainer",
]