mirror of
https://github.com/wassname/ray.git
synced 2026-07-06 05:16:30 +08:00
9 lines
282 B
Python
9 lines
282 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from ray.rllib.policy.torch_policy import TorchPolicy
|
|
from ray.rllib.utils import renamed_class
|
|
|
|
TorchPolicyGraph = renamed_class(TorchPolicy, old_name="TorchPolicyGraph")
|