mirror of
https://github.com/vale981/ray
synced 2025-03-09 12:56:46 -04:00
7 lines
265 B
Python
7 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"]
|