2022-06-04 07:35:24 +02:00
|
|
|
from ray.rllib.algorithms.pg.pg import DEFAULT_CONFIG, PGConfig, PG as PGTrainer
|
2022-06-06 13:07:47 +02:00
|
|
|
from ray.rllib.algorithms.pg.pg_torch_policy import PGTorchPolicy
|
2022-05-19 09:30:42 -07:00
|
|
|
from ray.rllib.algorithms.pg.utils import post_process_advantages
|
2018-07-01 00:05:08 -07:00
|
|
|
|
2020-02-19 16:07:37 -08:00
|
|
|
__all__ = [
|
2022-04-28 22:25:16 +02:00
|
|
|
"DEFAULT_CONFIG",
|
2020-05-08 08:20:18 +02:00
|
|
|
"post_process_advantages",
|
2022-04-28 22:25:16 +02:00
|
|
|
"PGConfig",
|
2020-05-08 08:20:18 +02:00
|
|
|
"PGTorchPolicy",
|
|
|
|
"PGTrainer",
|
2020-02-19 16:07:37 -08:00
|
|
|
]
|
2022-05-19 09:30:42 -07:00
|
|
|
|
|
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
|
|
|
|
deprecation_warning("ray.rllib.agents.pg", "ray.rllib.algorithms.pg", error=False)
|