ray/rllib/agents/ars/__init__.py

11 lines
284 B
Python
Raw Normal View History

from ray.rllib.agents.ars.ars import ARSTrainer, DEFAULT_CONFIG
from ray.rllib.agents.ars.ars_tf_policy import ARSTFPolicy
from ray.rllib.agents.ars.ars_torch_policy import ARSTorchPolicy
__all__ = [
"ARSTFPolicy",
"ARSTorchPolicy",
"ARSTrainer",
"DEFAULT_CONFIG",
]