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,

0 commit comments

Comments
 (0)