ray/rllib/algorithms/dqn/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
310 B
Python
Raw Normal View History

from ray.rllib.algorithms.dqn.dqn import DQN, DQNConfig, DEFAULT_CONFIG
from ray.rllib.algorithms.dqn.dqn_tf_policy import DQNTFPolicy
from ray.rllib.algorithms.dqn.dqn_torch_policy import DQNTorchPolicy
__all__ = [
"DQN",
"DQNConfig",
"DQNTFPolicy",
"DQNTorchPolicy",
"DEFAULT_CONFIG",
]