mirror of
https://github.com/vale981/ray
synced 2025-03-09 21:06:39 -04:00
16 lines
383 B
Python
16 lines
383 B
Python
![]() |
from ray.rllib.algorithms.slateq.slateq import (
|
||
|
SlateQConfig,
|
||
|
SlateQTrainer,
|
||
|
DEFAULT_CONFIG,
|
||
|
)
|
||
|
from ray.rllib.algorithms.slateq.slateq_tf_policy import SlateQTFPolicy
|
||
|
from ray.rllib.algorithms.slateq.slateq_torch_policy import SlateQTorchPolicy
|
||
|
|
||
|
__all__ = [
|
||
|
"DEFAULT_CONFIG",
|
||
|
"SlateQConfig",
|
||
|
"SlateQTFPolicy",
|
||
|
"SlateQTorchPolicy",
|
||
|
"SlateQTrainer",
|
||
|
]
|