2020-08-13 14:14:16 -04:00
|
|
|
from ray.rllib.utils.exploration.curiosity import Curiosity
|
2020-02-11 00:22:07 +01:00
|
|
|
from ray.rllib.utils.exploration.exploration import Exploration
|
|
|
|
from ray.rllib.utils.exploration.epsilon_greedy import EpsilonGreedy
|
2020-03-01 20:53:35 +01:00
|
|
|
from ray.rllib.utils.exploration.gaussian_noise import GaussianNoise
|
2022-01-29 18:41:57 -08:00
|
|
|
from ray.rllib.utils.exploration.ornstein_uhlenbeck_noise import OrnsteinUhlenbeckNoise
|
2020-04-01 09:43:21 +02:00
|
|
|
from ray.rllib.utils.exploration.parameter_noise import ParameterNoise
|
2022-01-29 18:41:57 -08:00
|
|
|
from ray.rllib.utils.exploration.per_worker_epsilon_greedy import PerWorkerEpsilonGreedy
|
|
|
|
from ray.rllib.utils.exploration.per_worker_gaussian_noise import PerWorkerGaussianNoise
|
|
|
|
from ray.rllib.utils.exploration.per_worker_ornstein_uhlenbeck_noise import (
|
|
|
|
PerWorkerOrnsteinUhlenbeckNoise,
|
|
|
|
)
|
2020-02-19 21:18:45 +01:00
|
|
|
from ray.rllib.utils.exploration.random import Random
|
2022-01-27 13:58:12 +01:00
|
|
|
from ray.rllib.utils.exploration.random_encoder import RE3
|
2022-02-04 17:01:12 +01:00
|
|
|
from ray.rllib.utils.exploration.slate_epsilon_greedy import SlateEpsilonGreedy
|
2022-02-22 09:36:44 +01:00
|
|
|
from ray.rllib.utils.exploration.slate_soft_q import SlateSoftQ
|
2020-02-19 21:18:45 +01:00
|
|
|
from ray.rllib.utils.exploration.soft_q import SoftQ
|
2022-01-29 18:41:57 -08:00
|
|
|
from ray.rllib.utils.exploration.stochastic_sampling import StochasticSampling
|
2022-01-27 13:58:12 +01:00
|
|
|
from ray.rllib.utils.exploration.thompson_sampling import ThompsonSampling
|
|
|
|
from ray.rllib.utils.exploration.upper_confidence_bound import UpperConfidenceBound
|
2020-02-11 00:22:07 +01:00
|
|
|
|
2020-02-19 21:18:45 +01:00
|
|
|
__all__ = [
|
2020-08-13 14:14:16 -04:00
|
|
|
"Curiosity",
|
2020-02-19 21:18:45 +01:00
|
|
|
"Exploration",
|
|
|
|
"EpsilonGreedy",
|
2020-03-01 20:53:35 +01:00
|
|
|
"GaussianNoise",
|
|
|
|
"OrnsteinUhlenbeckNoise",
|
2020-04-01 09:43:21 +02:00
|
|
|
"ParameterNoise",
|
2020-02-19 21:18:45 +01:00
|
|
|
"PerWorkerEpsilonGreedy",
|
2020-03-01 20:53:35 +01:00
|
|
|
"PerWorkerGaussianNoise",
|
|
|
|
"PerWorkerOrnsteinUhlenbeckNoise",
|
2020-02-19 21:18:45 +01:00
|
|
|
"Random",
|
2022-01-27 13:58:12 +01:00
|
|
|
"RE3",
|
2022-02-04 17:01:12 +01:00
|
|
|
"SlateEpsilonGreedy",
|
2022-02-22 09:36:44 +01:00
|
|
|
"SlateSoftQ",
|
2020-02-19 21:18:45 +01:00
|
|
|
"SoftQ",
|
|
|
|
"StochasticSampling",
|
2022-01-27 13:58:12 +01:00
|
|
|
"ThompsonSampling",
|
|
|
|
"UpperConfidenceBound",
|
2020-02-19 21:18:45 +01:00
|
|
|
]
|