Files
2026-07-13 13:17:40 +08:00

14 lines
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",
]