mirror of
https://github.com/vale981/ray
synced 2025-03-11 05:46:37 -04:00
8 lines
317 B
Python
8 lines
317 B
Python
from ray.rllib.algorithms.pg import DEFAULT_CONFIG # noqa
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.algorithms.pg.default_config::DEFAULT_CONFIG (python dict)",
|
|
new="ray.rllib.algorithms.pg.pg::PGConfig() (RLlib TrainerConfig class)",
|
|
error=True,
|
|
)
|