1
0
Fork 0
mirror of https://github.com/vale981/ray synced 2025-03-12 22:26:39 -04:00
ray/rllib/agents/slateq/__init__.py

9 lines
230 B
Python
Raw Normal View History

from ray.rllib.agents.slateq.slateq import SlateQTrainer, DEFAULT_CONFIG
from ray.rllib.agents.slateq.slateq_torch_policy import SlateQTorchPolicy
__all__ = [
"SlateQTrainer",
"SlateQTorchPolicy",
"DEFAULT_CONFIG",
]