Skip to content

Commit 0da5195

Browse files
committed
Pushing the docs to dev/ for branch: master, commit 747b43fb03126de5cb26e2090d6ecd93943a2dd7
1 parent b1ba0d9 commit 0da5195

File tree

192 files changed

+536
-550
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+536
-550
lines changed

dev/_downloads/0291a47bd3f63e064c434aea964d8e66/bayesian-optimization.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
"name": "python",
209209
"nbconvert_exporter": "python",
210210
"pygments_lexer": "ipython3",
211-
"version": "3.9.4"
211+
"version": "3.9.5"
212212
}
213213
},
214214
"nbformat": 4,

dev/_downloads/0f0d53351b0405c47cf8d0ef671596f9/interruptible-optimization.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"name": "python",
108108
"nbconvert_exporter": "python",
109109
"pygments_lexer": "ipython3",
110-
"version": "3.9.4"
110+
"version": "3.9.5"
111111
}
112112
},
113113
"nbformat": 4,

dev/_downloads/227fbc11d592826e298cb4f679fc86b8/optimizer-with-different-base-estimator.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"name": "python",
134134
"nbconvert_exporter": "python",
135135
"pygments_lexer": "ipython3",
136-
"version": "3.9.4"
136+
"version": "3.9.5"
137137
}
138138
},
139139
"nbformat": 4,

dev/_downloads/2836dfc666978d3b8e63b1399cca6c8a/sampling_comparison.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
"name": "python",
166166
"nbconvert_exporter": "python",
167167
"pygments_lexer": "ipython3",
168-
"version": "3.9.4"
168+
"version": "3.9.5"
169169
}
170170
},
171171
"nbformat": 4,

dev/_downloads/2aff3ba2ab1c0ff8a9636a15622dc4c4/parallel-optimization.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"name": "python",
7272
"nbconvert_exporter": "python",
7373
"pygments_lexer": "ipython3",
74-
"version": "3.9.4"
74+
"version": "3.9.5"
7575
}
7676
},
7777
"nbformat": 4,

dev/_downloads/327b9e59a928801e7cc2b01a757db508/partial-dependence-plot.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219
"name": "python",
220220
"nbconvert_exporter": "python",
221221
"pygments_lexer": "ipython3",
222-
"version": "3.9.4"
222+
"version": "3.9.5"
223223
}
224224
},
225225
"nbformat": 4,
Binary file not shown.

dev/_downloads/659de5944f8dc1f0424c48f86a240d84/hyperparameter-optimization.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"cell_type": "markdown",
1616
"metadata": {},
1717
"source": [
18-
"\n# Tuning a scikit-learn estimator with `skopt`\n\nGilles Louppe, July 2016\nKatie Malone, August 2016\nReformatted by Holger Nahrstaedt 2020\n\n.. currentmodule:: skopt\n\nIf you are looking for a :obj:`sklearn.model_selection.GridSearchCV` replacement checkout\n`sphx_glr_auto_examples_sklearn-gridsearchcv-replacement.py` instead.\n\n## Problem statement\n\nTuning the hyper-parameters of a machine learning model is often carried out\nusing an exhaustive exploration of (a subset of) the space all hyper-parameter\nconfigurations (e.g., using :obj:`sklearn.model_selection.GridSearchCV`), which\noften results in a very time consuming operation.\n\nIn this notebook, we illustrate how to couple :class:`gp_minimize` with sklearn's\nestimators to tune hyper-parameters using sequential model-based optimisation,\nhopefully resulting in equivalent or better solutions, but within less\nevaluations.\n\nNote: scikit-optimize provides a dedicated interface for estimator tuning via\n:class:`BayesSearchCV` class which has a similar interface to those of\n:obj:`sklearn.model_selection.GridSearchCV`. This class uses functions of skopt to perform hyperparameter\nsearch efficiently. For example usage of this class, see\n`sphx_glr_auto_examples_sklearn-gridsearchcv-replacement.py`\nexample notebook.\n"
18+
"\n# Tuning a scikit-learn estimator with `skopt`\n\nGilles Louppe, July 2016\nKatie Malone, August 2016\nReformatted by Holger Nahrstaedt 2020\n\n.. currentmodule:: skopt\n\nIf you are looking for a :obj:`sklearn.model_selection.GridSearchCV` replacement checkout\n`sphx_glr_auto_examples_sklearn-gridsearchcv-replacement.py` instead.\n\n## Problem statement\n\nTuning the hyper-parameters of a machine learning model is often carried out\nusing an exhaustive exploration of (a subset of) the space all hyper-parameter\nconfigurations (e.g., using :obj:`sklearn.model_selection.GridSearchCV`), which\noften results in a very time consuming operation.\n\nIn this notebook, we illustrate how to couple :class:`gp_minimize` with sklearn's\nestimators to tune hyper-parameters using sequential model-based optimisation,\nhopefully resulting in equivalent or better solutions, but within fewer\nevaluations.\n\nNote: scikit-optimize provides a dedicated interface for estimator tuning via\n:class:`BayesSearchCV` class which has a similar interface to those of\n:obj:`sklearn.model_selection.GridSearchCV`. This class uses functions of skopt to perform hyperparameter\nsearch efficiently. For example usage of this class, see\n`sphx_glr_auto_examples_sklearn-gridsearchcv-replacement.py`\nexample notebook.\n"
1919
]
2020
},
2121
{
@@ -129,7 +129,7 @@
129129
"name": "python",
130130
"nbconvert_exporter": "python",
131131
"pygments_lexer": "ipython3",
132-
"version": "3.9.4"
132+
"version": "3.9.5"
133133
}
134134
},
135135
"nbformat": 4,

dev/_downloads/6bf99924122eedf93b886bae30f1182b/sklearn-gridsearchcv-replacement.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
"name": "python",
155155
"nbconvert_exporter": "python",
156156
"pygments_lexer": "ipython3",
157-
"version": "3.9.4"
157+
"version": "3.9.5"
158158
}
159159
},
160160
"nbformat": 4,

dev/_downloads/6e32b232b2fb7887cfe8ea013442a759/visualizing-results.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
"name": "python",
184184
"nbconvert_exporter": "python",
185185
"pygments_lexer": "ipython3",
186-
"version": "3.9.4"
186+
"version": "3.9.5"
187187
}
188188
},
189189
"nbformat": 4,

dev/_downloads/7157e2941c0003b55b6f20ca4563a9b7/exploration-vs-exploitation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@
439439
"name": "python",
440440
"nbconvert_exporter": "python",
441441
"pygments_lexer": "ipython3",
442-
"version": "3.9.4"
442+
"version": "3.9.5"
443443
}
444444
},
445445
"nbformat": 4,

dev/_downloads/78e1fe5890c6d232b4597f4b27e2ad13/partial-dependence-plot-with-categorical.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
"name": "python",
155155
"nbconvert_exporter": "python",
156156
"pygments_lexer": "ipython3",
157-
"version": "3.9.4"
157+
"version": "3.9.5"
158158
}
159159
},
160160
"nbformat": 4,

dev/_downloads/88cba5cd0a3cd7c57cbd0a7201157e8f/hyperparameter-optimization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
In this notebook, we illustrate how to couple :class:`gp_minimize` with sklearn's
2424
estimators to tune hyper-parameters using sequential model-based optimisation,
25-
hopefully resulting in equivalent or better solutions, but within less
25+
hopefully resulting in equivalent or better solutions, but within fewer
2626
evaluations.
2727
2828
Note: scikit-optimize provides a dedicated interface for estimator tuning via

dev/_downloads/b4f910a92676697b8c1c26c50df6d7af/strategy-comparison.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
"name": "python",
130130
"nbconvert_exporter": "python",
131131
"pygments_lexer": "ipython3",
132-
"version": "3.9.4"
132+
"version": "3.9.5"
133133
}
134134
},
135135
"nbformat": 4,

dev/_downloads/b6b07db6d7bc35ac6c82ff6c997e4ad1/partial-dependence-plot-2D.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"name": "python",
135135
"nbconvert_exporter": "python",
136136
"pygments_lexer": "ipython3",
137-
"version": "3.9.4"
137+
"version": "3.9.5"
138138
}
139139
},
140140
"nbformat": 4,

dev/_downloads/b7daeffae1b2c218da61dcc9286972ee/ask-and-tell.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
"name": "python",
209209
"nbconvert_exporter": "python",
210210
"pygments_lexer": "ipython3",
211-
"version": "3.9.4"
211+
"version": "3.9.5"
212212
}
213213
},
214214
"nbformat": 4,

dev/_downloads/c5d1fa871ae42002773189655de152a2/store-and-load-results.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"name": "python",
173173
"nbconvert_exporter": "python",
174174
"pygments_lexer": "ipython3",
175-
"version": "3.9.4"
175+
"version": "3.9.5"
176176
}
177177
},
178178
"nbformat": 4,
Binary file not shown.

dev/_downloads/ed737baf9735731e081bcd30f558e314/initial-sampling-method-integer.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255
"name": "python",
256256
"nbconvert_exporter": "python",
257257
"pygments_lexer": "ipython3",
258-
"version": "3.9.4"
258+
"version": "3.9.5"
259259
}
260260
},
261261
"nbformat": 4,

dev/_downloads/faec476481e9ca7d36b78731fa5a6689/initial-sampling-method.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255
"name": "python",
256256
"nbconvert_exporter": "python",
257257
"pygments_lexer": "ipython3",
258-
"version": "3.9.4"
258+
"version": "3.9.5"
259259
}
260260
},
261261
"nbformat": 4,
-137 Bytes
Binary file not shown.

dev/_images/binder_badge_logo.png

0 Bytes
Loading

dev/_modules/skopt/plots.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ <h1>Source code for skopt.plots</h1><div class="highlight"><pre>
338338
<span class="k">for</span> <span class="n">fx_i</span> <span class="ow">in</span> <span class="n">fx</span><span class="p">],</span>
339339
<span class="p">[</span><span class="n">fx_i</span> <span class="o">+</span> <span class="mf">1.9600</span> <span class="o">*</span> <span class="n">noise_level</span>
340340
<span class="k">for</span> <span class="n">fx_i</span> <span class="ow">in</span> <span class="n">fx</span><span class="p">[::</span><span class="o">-</span><span class="mi">1</span><span class="p">]])),</span>
341-
<span class="n">alpha</span><span class="o">=.</span><span class="mi">2</span><span class="p">,</span> <span class="n">fc</span><span class="o">=</span><span class="s2">&quot;r&quot;</span><span class="p">,</span> <span class="n">ec</span><span class="o">=</span><span class="s2">&quot;None&quot;</span><span class="p">)</span>
341+
<span class="n">alpha</span><span class="o">=</span><span class="mf">.2</span><span class="p">,</span> <span class="n">fc</span><span class="o">=</span><span class="s2">&quot;r&quot;</span><span class="p">,</span> <span class="n">ec</span><span class="o">=</span><span class="s2">&quot;None&quot;</span><span class="p">)</span>
342342

343343
<span class="c1"># Plot GP(x) + contours</span>
344344
<span class="k">if</span> <span class="n">show_mu</span><span class="p">:</span>
@@ -347,7 +347,7 @@ <h1>Source code for skopt.plots</h1><div class="highlight"><pre>
347347
<span class="n">ax</span><span class="o">.</span><span class="n">fill</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">concatenate</span><span class="p">([</span><span class="n">x</span><span class="p">,</span> <span class="n">x</span><span class="p">[::</span><span class="o">-</span><span class="mi">1</span><span class="p">]]),</span>
348348
<span class="n">np</span><span class="o">.</span><span class="n">concatenate</span><span class="p">([</span><span class="n">y_pred</span> <span class="o">-</span> <span class="mf">1.9600</span> <span class="o">*</span> <span class="n">sigma</span><span class="p">,</span>
349349
<span class="p">(</span><span class="n">y_pred</span> <span class="o">+</span> <span class="mf">1.9600</span> <span class="o">*</span> <span class="n">sigma</span><span class="p">)[::</span><span class="o">-</span><span class="mi">1</span><span class="p">]]),</span>
350-
<span class="n">alpha</span><span class="o">=.</span><span class="mi">2</span><span class="p">,</span> <span class="n">fc</span><span class="o">=</span><span class="s2">&quot;g&quot;</span><span class="p">,</span> <span class="n">ec</span><span class="o">=</span><span class="s2">&quot;None&quot;</span><span class="p">)</span>
350+
<span class="n">alpha</span><span class="o">=</span><span class="mf">.2</span><span class="p">,</span> <span class="n">fc</span><span class="o">=</span><span class="s2">&quot;g&quot;</span><span class="p">,</span> <span class="n">ec</span><span class="o">=</span><span class="s2">&quot;None&quot;</span><span class="p">)</span>
351351

352352
<span class="c1"># Plot sampled points</span>
353353
<span class="k">if</span> <span class="n">show_observations</span><span class="p">:</span>

dev/_sources/auto_examples/ask-and-tell.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ and report the value back to the optimizer:
208208
fun: 0.2071864923643295
209209
func_vals: array([0.20718649])
210210
models: []
211-
random_state: RandomState(MT19937) at 0x7F6BD7FB4B40
211+
random_state: RandomState(MT19937) at 0x7F2A6E77FE40
212212
space: Space([Real(low=-2.0, high=2.0, prior='uniform', transform='normalize')])
213213
specs: {'args': {'dimensions': [(-2.0, 2.0)], 'base_estimator': 'GP', 'n_random_starts': None, 'n_initial_points': 10, 'initial_point_generator': 'lhs', 'n_jobs': 1, 'acq_func': 'EI', 'acq_optimizer': 'sampling', 'random_state': None, 'model_queue_size': None, 'acq_func_kwargs': None, 'acq_optimizer_kwargs': None}, 'function': 'Optimizer'}
214214
x: [-0.7315058981975282]
@@ -328,7 +328,7 @@ meantime:
328328
329329
.. rst-class:: sphx-glr-timing
330330

331-
**Total running time of the script:** ( 0 minutes 3.598 seconds)
331+
**Total running time of the script:** ( 0 minutes 2.592 seconds)
332332

333333
**Estimated memory usage:** 15 MB
334334

dev/_sources/auto_examples/bayesian-optimization.rst.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,11 +271,11 @@ provide the following information:
271271
normalize_y=True, random_state=822569775), GaussianProcessRegressor(kernel=1**2 * Matern(length_scale=1, nu=2.5) + WhiteKernel(noise_level=0.01),
272272
n_restarts_optimizer=2, noise=0.010000000000000002,
273273
normalize_y=True, random_state=822569775)]
274-
random_state: RandomState(MT19937) at 0x7F6BB4060C40
274+
random_state: RandomState(MT19937) at 0x7F2A4993B140
275275
space: Space([Real(low=-2.0, high=2.0, prior='uniform', transform='normalize')])
276-
specs: {'args': {'func': <function f at 0x7f6bb40a9940>, 'dimensions': Space([Real(low=-2.0, high=2.0, prior='uniform', transform='normalize')]), 'base_estimator': GaussianProcessRegressor(kernel=1**2 * Matern(length_scale=1, nu=2.5),
276+
specs: {'args': {'func': <function f at 0x7f2a49aafee0>, 'dimensions': Space([Real(low=-2.0, high=2.0, prior='uniform', transform='normalize')]), 'base_estimator': GaussianProcessRegressor(kernel=1**2 * Matern(length_scale=1, nu=2.5),
277277
n_restarts_optimizer=2, noise=0.010000000000000002,
278-
normalize_y=True, random_state=822569775), 'n_calls': 15, 'n_random_starts': 5, 'n_initial_points': 10, 'initial_point_generator': 'random', 'acq_func': 'EI', 'acq_optimizer': 'auto', 'x0': None, 'y0': None, 'random_state': RandomState(MT19937) at 0x7F6BB4060C40, 'verbose': False, 'callback': None, 'n_points': 10000, 'n_restarts_optimizer': 5, 'xi': 0.01, 'kappa': 1.96, 'n_jobs': 1, 'model_queue_size': None}, 'function': 'base_minimize'}
278+
normalize_y=True, random_state=822569775), 'n_calls': 15, 'n_random_starts': 5, 'n_initial_points': 10, 'initial_point_generator': 'random', 'acq_func': 'EI', 'acq_optimizer': 'auto', 'x0': None, 'y0': None, 'random_state': RandomState(MT19937) at 0x7F2A4993B140, 'verbose': False, 'callback': None, 'n_points': 10000, 'n_restarts_optimizer': 5, 'xi': 0.01, 'kappa': 1.96, 'n_jobs': 1, 'model_queue_size': None}, 'function': 'base_minimize'}
279279
x: [-0.35518416232959327]
280280
x_iters: [[-0.009345334109402526], [1.2713537644662787], [0.4484475787090836], [1.0854396754496047], [1.4426790855107496], [0.9579248468740373], [-0.45158087416842263], [-0.685948113064442], [-0.35518416232959327], [-0.29315379225502536], [-0.3209941608705478], [-2.0], [2.0], [-1.3373742014126968], [-0.2478422942435552]]
281281
@@ -434,7 +434,7 @@ because the GP does not gain anything more by further exploration:
434434

435435
.. rst-class:: sphx-glr-timing
436436

437-
**Total running time of the script:** ( 0 minutes 3.479 seconds)
437+
**Total running time of the script:** ( 0 minutes 6.393 seconds)
438438

439439
**Estimated memory usage:** 9 MB
440440

dev/_sources/auto_examples/exploration-vs-exploitation.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ recalculated.
597597

598598
.. rst-class:: sphx-glr-timing
599599

600-
**Total running time of the script:** ( 0 minutes 41.671 seconds)
600+
**Total running time of the script:** ( 0 minutes 33.690 seconds)
601601

602602
**Estimated memory usage:** 9 MB
603603

dev/_sources/auto_examples/hyperparameter-optimization.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ often results in a very time consuming operation.
4141

4242
In this notebook, we illustrate how to couple :class:`gp_minimize` with sklearn's
4343
estimators to tune hyper-parameters using sequential model-based optimisation,
44-
hopefully resulting in equivalent or better solutions, but within less
44+
hopefully resulting in equivalent or better solutions, but within fewer
4545
evaluations.
4646

4747
Note: scikit-optimize provides a dedicated interface for estimator tuning via
@@ -240,7 +240,7 @@ Convergence plot
240240
241241
.. rst-class:: sphx-glr-timing
242242

243-
**Total running time of the script:** ( 0 minutes 36.978 seconds)
243+
**Total running time of the script:** ( 0 minutes 27.737 seconds)
244244

245245
**Estimated memory usage:** 34 MB
246246

0 commit comments

Comments
 (0)