|
6 | 6 | <meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /> |
7 | 7 |
|
8 | 8 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
9 | | - <title>Advanced Usage — DFO-LS v1.6.3 documentation</title> |
| 9 | + <title>Advanced Usage — DFO-LS v1.6.4 documentation</title> |
10 | 10 | <link rel="stylesheet" type="text/css" href="_static/pygments.css?v=03e43079" /> |
11 | 11 | <link rel="stylesheet" type="text/css" href="_static/css/theme.css?v=e59714d7" /> |
12 | 12 |
|
13 | 13 |
|
14 | 14 | <script src="_static/jquery.js?v=5d32c60e"></script> |
15 | 15 | <script src="_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script> |
16 | | - <script src="_static/documentation_options.js?v=452006c5"></script> |
| 16 | + <script src="_static/documentation_options.js?v=8ea99608"></script> |
17 | 17 | <script src="_static/doctools.js?v=9bcbadda"></script> |
18 | 18 | <script src="_static/sphinx_highlight.js?v=dc90522c"></script> |
19 | 19 | <script async="async" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> |
@@ -181,6 +181,7 @@ <h2>Regression Model Management<a class="headerlink" href="#regression-model-man |
181 | 181 | <h2>Multiple Restarts<a class="headerlink" href="#multiple-restarts" title="Link to this heading"></a></h2> |
182 | 182 | <ul class="simple"> |
183 | 183 | <li><p><code class="code docutils literal notranslate"><span class="pre">restarts.use_restarts</span></code> - Whether to do restarts when <span class="math notranslate nohighlight">\(\rho_k\)</span> reaches <span class="math notranslate nohighlight">\(\rho_{end}\)</span>, or (optionally) when all points are within noise level of <span class="math notranslate nohighlight">\(f(x_k)\)</span>. Default is <code class="code docutils literal notranslate"><span class="pre">False</span></code> for smooth problems or <code class="code docutils literal notranslate"><span class="pre">True</span></code> for noisy problems.</p></li> |
| 184 | +<li><p><code class="code docutils literal notranslate"><span class="pre">restarts.throw_error_on_nans</span></code> - whether or not to throw <code class="code docutils literal notranslate"><span class="pre">numpy.linalg.LinAlgError</span></code> if trying to interpolate to NaN objective values. If <code class="code docutils literal notranslate"><span class="pre">False</span></code>, DFO-LS should terminate gracefully with an error flag. Default is <code class="code docutils literal notranslate"><span class="pre">False</span></code>.</p></li> |
184 | 185 | <li><p><code class="code docutils literal notranslate"><span class="pre">restarts.max_unsuccessful_restarts</span></code> - Maximum number of consecutive unsuccessful restarts allowed (i.e.~restarts which did not reduce the objective further). Default is 10.</p></li> |
185 | 186 | <li><p><code class="code docutils literal notranslate"><span class="pre">restarts.rhoend_scale</span></code> - Factor to reduce <span class="math notranslate nohighlight">\(\rho_{end}\)</span> by with each restart. Default is 1.</p></li> |
186 | 187 | <li><p><code class="code docutils literal notranslate"><span class="pre">restarts.use_soft_restarts</span></code> - Whether to use soft or hard restarts. Default is <code class="code docutils literal notranslate"><span class="pre">True</span></code>.</p></li> |
|
0 commit comments