mirror of
https://github.com/gryf/coach.git
synced 2026-04-01 01:23:33 +02:00
update of api docstrings across coach and tutorials [WIP] (#91)
* 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
This commit is contained in:
@@ -13,3 +13,43 @@
|
||||
# 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'
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user