mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
9 lines
297 B
Python
9 lines
297 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from ray.rllib.utils import renamed_class
|
|
from ray.rllib.evaluation import RolloutWorker
|
|
|
|
PolicyEvaluator = renamed_class(
|
|
RolloutWorker, old_name="rllib.evaluation.PolicyEvaluator")
|