mirror of
https://github.com/wassname/ray.git
synced 2026-07-03 16:58:23 +08:00
8 lines
265 B
Python
8 lines
265 B
Python
from ray.rllib.agents.ppo.ppo import PPOTrainer, DEFAULT_CONFIG
|
|
from ray.rllib.agents.ppo.appo import APPOTrainer
|
|
from ray.rllib.utils import renamed_agent
|
|
|
|
PPOAgent = renamed_agent(PPOTrainer)
|
|
|
|
__all__ = ["PPOAgent", "APPOTrainer", "PPOTrainer", "DEFAULT_CONFIG"]
|