mirror of
https://github.com/vale981/ray
synced 2025-03-09 04:46:38 -04: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"]
|