项目文件夹

文件
2026-07-13 13:17:40 +08:00

14 行
270 B
Python

"""TQC (Truncated Quantile Critics) Algorithm.
Paper: https://arxiv.org/abs/2005.04269
"""
from ray.rllib.algorithms.tqc.tqc import TQC, TQCConfig
from ray.rllib.algorithms.tqc.tqc_catalog import TQCCatalog
__all__ = [
"TQC",
"TQCConfig",
"TQCCatalog",
]