# # Copyright (c) 2017 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # from .additive_noise import AdditiveNoiseParameters, AdditiveNoise from .boltzmann import BoltzmannParameters, Boltzmann from .bootstrapped import BootstrappedParameters, Bootstrapped from .categorical import CategoricalParameters, Categorical from .continuous_entropy import ContinuousEntropyParameters, ContinuousEntropy from .e_greedy import EGreedyParameters, EGreedy from .exploration_policy import ExplorationParameters, ExplorationPolicy from .greedy import GreedyParameters, Greedy from .ou_process import OUProcessParameters, OUProcess from .parameter_noise import ParameterNoiseParameters, ParameterNoise from .truncated_normal import TruncatedNormalParameters, TruncatedNormal from .ucb import UCBParameters, UCB __all__ = [ 'AdditiveNoiseParameters', 'AdditiveNoise', 'BoltzmannParameters', 'Boltzmann', 'BootstrappedParameters', 'Bootstrapped', 'CategoricalParameters', 'Categorical', 'ContinuousEntropyParameters', 'ContinuousEntropy', 'EGreedyParameters', 'EGreedy', 'ExplorationParameters', 'ExplorationPolicy', 'GreedyParameters', 'Greedy', 'OUProcessParameters', 'OUProcess', 'ParameterNoiseParameters', 'ParameterNoise', 'TruncatedNormalParameters', 'TruncatedNormal', 'UCBParameters', 'UCB' ]