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

12 lines
286 B
Python

"""TQC PyTorch implementations."""
from ray.rllib.algorithms.tqc.torch.default_tqc_torch_rl_module import (
DefaultTQCTorchRLModule,
)
from ray.rllib.algorithms.tqc.torch.tqc_torch_learner import TQCTorchLearner
__all__ = [
"DefaultTQCTorchRLModule",
"TQCTorchLearner",
]