mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
21 lines
542 B
Python
21 lines
542 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",
|
|
]
|
|
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
"ray.rllib.agents.slateq", "ray.rllib.algorithms.slateq", error=False
|
|
)
|