mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
7 lines
259 B
Python
7 lines
259 B
Python
from ray.rllib.models.tf.recurrent_net import RecurrentNetwork
|
|
from ray.rllib.utils.deprecation import renamed_class
|
|
|
|
RecurrentTFModelV2 = renamed_class(
|
|
cls=RecurrentNetwork,
|
|
old_name="ray.rllib.models.tf.recurrent_tf_model_v2.RecurrentTFModelV2",
|
|
)
|