mirror of
https://github.com/vale981/ray
synced 2025-03-12 06:06:39 -04:00
12 lines
311 B
Python
12 lines
311 B
Python
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",
|
|
]
|