mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
16 lines
528 B
Python
16 lines
528 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from ray.rllib.agents.ddpg.apex import ApexDDPGTrainer
|
|
from ray.rllib.agents.ddpg.ddpg import DDPGTrainer, DEFAULT_CONFIG
|
|
from ray.rllib.agents.ddpg.td3 import TD3Trainer
|
|
from ray.rllib.utils import renamed_agent
|
|
|
|
ApexDDPGAgent = renamed_agent(ApexDDPGTrainer)
|
|
DDPGAgent = renamed_agent(DDPGTrainer)
|
|
|
|
__all__ = [
|
|
"DDPGAgent", "ApexDDPGAgent", "DDPGTrainer", "ApexDDPGTrainer",
|
|
"TD3Trainer", "DEFAULT_CONFIG"
|
|
]
|