mirror of
https://github.com/vale981/ray
synced 2025-03-10 05:16:49 -04:00
14 lines
309 B
Python
14 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",
|
||
|
]
|