mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
16 lines
410 B
Python
16 lines
410 B
Python
from ray.rllib.agents.a3c.a3c import A3CTrainer, DEFAULT_CONFIG
|
|
from ray.rllib.agents.a3c.a2c import A2CTrainer
|
|
from ray.rllib.agents.a3c.a2c_pipeline import A2CPipeline
|
|
from ray.rllib.utils import renamed_agent
|
|
|
|
A2CAgent = renamed_agent(A2CTrainer)
|
|
A3CAgent = renamed_agent(A3CTrainer)
|
|
|
|
__all__ = [
|
|
"A2CAgent",
|
|
"A3CAgent",
|
|
"A2CTrainer",
|
|
"A3CTrainer",
|
|
"DEFAULT_CONFIG",
|
|
"A2CPipeline"
|
|
]
|