ray/rllib/agents/ppo/__init__.py

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"]