mirror of
https://github.com/gryf/coach.git
synced 2025-12-18 11:40:18 +01:00
* updating the documentation website * adding the built docs * update of api docstrings across coach and tutorials 0-2 * added some missing api documentation * New Sphinx based documentation
56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
#
|
|
# 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'
|
|
]
|