mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00
14 lines
377 B
Python
14 lines
377 B
Python
from ray.rllib.algorithms.ddpg.apex import ApexDDPGConfig, ApexDDPGTrainer
|
|
from ray.rllib.algorithms.ddpg.ddpg import DDPGConfig, DDPGTrainer, DEFAULT_CONFIG
|
|
from ray.rllib.algorithms.ddpg.td3 import TD3Config, TD3Trainer
|
|
|
|
|
|
__all__ = [
|
|
"ApexDDPGConfig",
|
|
"ApexDDPGTrainer",
|
|
"DDPGConfig",
|
|
"DDPGTrainer",
|
|
"DEFAULT_CONFIG",
|
|
"TD3Config",
|
|
"TD3Trainer",
|
|
]
|