You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<li><strong>function <code><atitle="sambo.minimize" href="#sambo.minimize">minimize()</a></code></strong>, a near drop-in replacement for <ahref="https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.minimize.html"><code>scipy.optimize.minimize()</code></a>,</li>
54
54
<li><strong>class <code><atitle="sambo.Optimizer" href="#sambo.Optimizer">Optimizer</a></code></strong> with an ask-and-tell user interface,
with Bayesian optimization estimators like <ahref="https://www.gaussianprocess.org/gpml/chapters/RW.pdf">gaussian process</a> and <ahref="https://doi.org/10.1007/s10994-006-6226-1">extra trees</a>,
56
+
with <strong>Bayesian optimization estimators like <ahref="https://www.gaussianprocess.org/gpml/chapters/RW.pdf">Gaussian processes</a> and <ahref="https://doi.org/10.1007/s10994-006-6226-1">Extra Trees</a></strong>
57
57
built in,</li>
58
-
<li><strong><code><atitle="sambo.SamboSearchCV" href="#sambo.SamboSearchCV">SamboSearchCV</a></code></strong>, a much faster drop-in replacement for
59
-
scikit-learn's <ahref="https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html"><code>GridSearchCV</code></a> and similar exhaustive
58
+
<li><strong><code><atitle="sambo.SamboSearchCV" href="#sambo.SamboSearchCV">SamboSearchCV</a></code></strong>, a much faster <strong>drop-in replacement</strong> for
59
+
scikit-learn's <strong><ahref="https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.GridSearchCV.html"><code>GridSearchCV</code></a></strong> and similar exhaustive
60
60
machine-learning hyper-parameter tuning methods,
61
61
but compared to unpredictable stochastic methods, <em>informed</em>.</li>
62
62
</ul>
63
63
<p>The algorithms and methods implemented by or used in this package are:</p>
64
64
<ul>
65
-
<li><ahref="http://doi.org/10.1007/s10898-018-0645-y">simplical homology global optimization</a> (SHGO), customizing the <ahref="https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.shgo.html">implementation from SciPy</a>,</li>
<li><ahref="https://doi.org/10.1007/BF00939380">shuffled complex evolution</a> (SCE-UA with improvements).</li>
65
+
<li><strong><ahref="http://doi.org/10.1007/s10898-018-0645-y">simplical homology global optimization</a> (SHGO)</strong>, reinitializing the <ahref="https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.shgo.html">implementation from SciPy</a>,</li>
Should be a sequence of (min, max) pairs for each dimension,
336
341
or an enumeration of nominal values. For any dimension,
337
-
if <code>min</code> and <code>max</code> are integers, the dimension is assumed to be <em>integral</em>.
338
-
If <code>min</code> or <code>max</code> are floats, the dimension is assumed to be <em>real</em>.
339
-
In all other cases including if more than two values are provided,
340
-
the dimension is assumed to be an <em>enumeration</em> of values.
342
+
<strong>if <code>min</code> and <code>max</code> are integers</strong>, the dimension is assumed to be <em>integral</em>
343
+
on interval <code>[min, max)</code> (see warning below).
344
+
If <code>min</code> or <code>max</code> are <strong>floats</strong>, the dimension is assumed to be <em>real</em>.
345
+
In all other cases including if more than two values are specified,
346
+
the dimension is assumed to be that (<ahref="https://en.wikipedia.org/wiki/Level_of_measurement#Nominal_level">nominal</a>) <em>enumeration</em> of values.
341
347
See <em>Examples</em> below.</p>
342
348
<divclass="admonition note">
343
349
<pclass="admonition-title">Note: Nominals are represented as ordinals</p>
344
-
<p>Categorical (nominal) enumerations, although often not inherently ordered,
350
+
<p>Categorical (<ahref="https://en.wikipedia.org/wiki/Level_of_measurement#Nominal_level">nominal</a>) enumerations, although often not inherently ordered,
345
351
are internally represented as integral dimensions.
346
352
If this appears to significantly affect your results
0 commit comments