mirror of
https://github.com/wassname/ray.git
synced 2026-06-28 15:40:09 +08:00
12 lines
410 B
Python
12 lines
410 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from ray.rllib.policy.sample_batch import SampleBatch, MultiAgentBatch
|
|
from ray.rllib.utils import renamed_class
|
|
|
|
SampleBatch = renamed_class(
|
|
SampleBatch, old_name="rllib.evaluation.SampleBatch")
|
|
MultiAgentBatch = renamed_class(
|
|
MultiAgentBatch, old_name="rllib.evaluation.MultiAgentBatch")
|