mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
15 lines
369 B
Python
15 lines
369 B
Python
from ray.rllib.algorithms.slateq.slateq import (
|
|
SlateQ,
|
|
SlateQConfig,
|
|
DEFAULT_CONFIG,
|
|
)
|
|
from ray.rllib.algorithms.slateq.slateq_tf_policy import SlateQTFPolicy
|
|
from ray.rllib.algorithms.slateq.slateq_torch_policy import SlateQTorchPolicy
|
|
|
|
__all__ = [
|
|
"SlateQ",
|
|
"SlateQConfig",
|
|
"SlateQTFPolicy",
|
|
"SlateQTorchPolicy",
|
|
"DEFAULT_CONFIG",
|
|
]
|