mirror of
https://github.com/wassname/ray.git
synced 2026-08-06 13:31:10 +08:00
9 lines
322 B
Python
9 lines
322 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.agents.a3c.a3c_pipeline import A3CPipeline
|
|
|
|
__all__ = [
|
|
"A2CTrainer", "A3CTrainer", "DEFAULT_CONFIG", "A2CPipeline", "A3CPipeline"
|
|
]
|