mirror of
https://github.com/wassname/ray.git
synced 2026-07-02 18:31:37 +08:00
6 lines
241 B
Python
6 lines
241 B
Python
from ray.rllib.agents.ppo.ppo import PPOTrainer, DEFAULT_CONFIG
|
|
from ray.rllib.agents.ppo.appo import APPOTrainer
|
|
from ray.rllib.agents.ppo.ddppo import DDPPOTrainer
|
|
|
|
__all__ = ["APPOTrainer", "DDPPOTrainer", "PPOTrainer", "DEFAULT_CONFIG"]
|