2022-06-11 15:10:39 +02:00
|
|
|
from ray.rllib.algorithms.ars.ars import ARS as ARSTrainer, DEFAULT_CONFIG
|
2022-05-06 10:11:15 -07:00
|
|
|
from ray.rllib.algorithms.ars.ars_tf_policy import ARSTFPolicy
|
|
|
|
from ray.rllib.algorithms.ars.ars_torch_policy import ARSTorchPolicy
|
2018-08-24 22:20:02 -07:00
|
|
|
|
2020-04-21 09:47:52 +02:00
|
|
|
__all__ = [
|
|
|
|
"ARSTFPolicy",
|
|
|
|
"ARSTorchPolicy",
|
|
|
|
"ARSTrainer",
|
|
|
|
"DEFAULT_CONFIG",
|
|
|
|
]
|
2022-05-06 10:11:15 -07:00
|
|
|
|
|
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
|
|
|
|
deprecation_warning("ray.rllib.agents.ars", "ray.rllib.algorithms.ars", error=False)
|