mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00
13 lines
309 B
Python
13 lines
309 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from ray.rllib.agents.sac.sac import SACTrainer, DEFAULT_CONFIG
|
|
from ray.rllib.utils import renamed_agent
|
|
|
|
SACAgent = renamed_agent(SACTrainer)
|
|
|
|
__all__ = [
|
|
"SACTrainer",
|
|
"DEFAULT_CONFIG",
|
|
]
|