mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 07:18:24 +08:00
11 lines
284 B
Python
11 lines
284 B
Python
from ray.rllib.agents.sac.sac import SACTrainer, DEFAULT_CONFIG
|
|
from ray.rllib.agents.sac.sac_tf_policy import SACTFPolicy
|
|
from ray.rllib.agents.sac.sac_torch_policy import SACTorchPolicy
|
|
|
|
__all__ = [
|
|
"DEFAULT_CONFIG",
|
|
"SACTFPolicy",
|
|
"SACTorchPolicy",
|
|
"SACTrainer",
|
|
]
|