ray/rllib/offline/off_policy_estimator.py
Rohan Potdar 38c9e1d52a
[RLlib]: Fix OPE trainables (#26279)
Co-authored-by: Kourosh Hakhamaneshi <kourosh@anyscale.com>
2022-07-17 14:25:53 -07:00

10 lines
316 B
Python

from ray.rllib.offline.estimators.off_policy_estimator import ( # noqa: F401
OffPolicyEstimator,
)
from ray.rllib.utils.deprecation import deprecation_warning
deprecation_warning(
old="ray.rllib.offline.off_policy_estimator",
new="ray.rllib.offline.estimators.off_policy_estimator",
error=False,
)