mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
10 lines
417 B
Python
10 lines
417 B
Python
from ray.rllib.algorithms.es.es import ES as ESTrainer, DEFAULT_CONFIG
|
|
from ray.rllib.algorithms.es.es_tf_policy import ESTFPolicy
|
|
from ray.rllib.algorithms.es.es_torch_policy import ESTorchPolicy
|
|
|
|
__all__ = ["ESTFPolicy", "ESTorchPolicy", "ESTrainer", "DEFAULT_CONFIG"]
|
|
|
|
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning("ray.rllib.agents.es", "ray.rllib.algorithms.es", error=False)
|