mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00
5 lines
241 B
Python
5 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"]
|