File: classes.rst

package info (click to toggle)
scikit-optimize 0.10.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,672 kB
  • sloc: python: 10,659; javascript: 438; makefile: 136; sh: 6
file content (306 lines) | stat: -rw-r--r-- 6,275 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
.. _api_ref:

=============
API Reference
=============

Scikit-Optimize, or skopt, is a simple and efficient library to minimize (very) expensive and noisy black-box functions. It implements several methods for sequential model-based optimization. skopt is reusable in many contexts and accessible.


:mod:`skopt`: module
====================

Base classes
------------
.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: class.rst

    BayesSearchCV
    Optimizer
    Space

Functions
---------
.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: function.rst

    dummy_minimize
    dump
    expected_minimum
    expected_minimum_random_sampling
    forest_minimize
    gbrt_minimize
    gp_minimize
    load

.. _acquisition_ref:

:mod:`skopt.acquisition`: Acquisition
=====================================

.. automodule:: skopt.acquisition
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`acquisition` section for further details.

.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: function.rst

    acquisition.gaussian_acquisition_1D
    acquisition.gaussian_ei
    acquisition.gaussian_lcb
    acquisition.gaussian_pi

.. _benchmarks_ref:

:mod:`skopt.benchmarks`: A collection of benchmark problems.
============================================================

.. automodule:: skopt.benchmarks
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`benchmarks` section for
further details.

.. currentmodule:: skopt

Functions
---------
.. autosummary::
   :toctree: generated/
   :template: function.rst

    benchmarks.bench1
    benchmarks.bench1_with_time
    benchmarks.bench2
    benchmarks.bench3
    benchmarks.bench4
    benchmarks.bench5
    benchmarks.branin
    benchmarks.hart6

.. _callbacks_ref:

:mod:`skopt.callbacks`: Callbacks
=================================

.. automodule:: skopt.callbacks
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`callbacks` section for further
details.

.. currentmodule:: skopt

.. autosummary::
    :toctree: generated
    :template: class.rst

    callbacks.CheckpointSaver
    callbacks.DeadlineStopper
    callbacks.DeltaXStopper
    callbacks.DeltaYStopper
    callbacks.EarlyStopper
    callbacks.TimerCallback
    callbacks.VerboseCallback


.. _learning_ref:

:mod:`skopt.learning`: Machine learning extensions for model-based optimization.
================================================================================

.. automodule:: skopt.learning
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`learning` section for further details.

.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: class.rst

    learning.ExtraTreesRegressor
    learning.GaussianProcessRegressor
    learning.GradientBoostingQuantileRegressor
    learning.RandomForestRegressor


.. _optimizer_ref:

:mod:`skopt.optimizer`: Optimizer
=================================

.. automodule:: skopt.optimizer
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`optimizer` section for further details.

.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: class.rst

    optimizer.Optimizer

.. autosummary::
   :toctree: generated/
   :template: function.rst

    optimizer.base_minimize
    optimizer.dummy_minimize
    optimizer.forest_minimize
    optimizer.gbrt_minimize
    optimizer.gp_minimize

.. _plots_ref:

:mod:`skopt.plots`: Plotting functions.
=======================================

.. automodule:: skopt.plots
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`plots` section for further details.


.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: function.rst

    plots.partial_dependence
    plots.partial_dependence_1D
    plots.partial_dependence_2D
    plots.plot_convergence
    plots.plot_evaluations
    plots.plot_gaussian_process
    plots.plot_objective
    plots.plot_objective_2D
    plots.plot_histogram
    plots.plot_regret

.. _utils_ref:

:mod:`skopt.utils`: Utils functions.
====================================

.. automodule:: skopt.utils
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`utils` section for further details.


.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: function.rst

    utils.cook_estimator
    utils.cook_initial_point_generator
    utils.dimensions_aslist
    utils.expected_minimum
    utils.expected_minimum_random_sampling
    utils.dump
    utils.load
    utils.point_asdict
    utils.point_aslist
    utils.use_named_args

.. _sampler_ref:

:mod:`skopt.sampler`: Samplers
==============================

.. automodule:: skopt.sampler
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`sampler` section for further details.

.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: class.rst

    sampler.Lhs
    sampler.Sobol
    sampler.Halton
    sampler.Hammersly


.. _space_ref:

:mod:`skopt.space.space`: Space
===============================

.. automodule:: skopt.space.space
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`space` section for further details.

.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: class.rst

    space.space.Categorical
    space.space.Dimension
    space.space.Integer
    space.space.Real
    space.space.Space

.. autosummary::
   :toctree: generated/
   :template: function.rst

    space.space.check_dimension

.. _transformers_ref:

:mod:`skopt.space.transformers`: transformers
=============================================

.. automodule:: skopt.space.transformers
   :no-members:
   :no-inherited-members:

**User guide:** See the :ref:`transformers` section for further details.

.. currentmodule:: skopt

.. autosummary::
   :toctree: generated/
   :template: class.rst

    space.transformers.CategoricalEncoder
    space.transformers.Identity
    space.transformers.LogN
    space.transformers.Normalize
    space.transformers.Pipeline
    space.transformers.Transformer
    space.transformers.LabelEncoder
    space.transformers.StringEncoder