Skip to content

Commit 715f575

Browse files
author
Github Actions
committed
Katharina Eggensperger: Extend docs (#1309)
1 parent 406eac6 commit 715f575

File tree

93 files changed

+3957
-2812
lines changed

Some content is hidden

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

93 files changed

+3957
-2812
lines changed

development/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 13a06760a87ac8d7b659b4aa6efbd203
3+
config: 5cf98cc5ee62fabd320f75d828ce121c
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file not shown.
Binary file not shown.
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

development/_modules/autosklearn/estimators.html

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
<li><a href="../../index.html">Start</a></li>
6464
<li><a href="../../releases.html">Releases</a></li>
6565
<li><a href="../../installation.html">Installation</a></li>
66-
<li><a href="../../manual.html">Manual</a></li>
6766
<li><a href="../../examples/index.html">Examples</a></li>
6867
<li><a href="../../api.html">API</a></li>
6968
<li><a href="../../extending.html">Extending</a></li>
@@ -189,7 +188,7 @@ <h1>Source code for autosklearn.estimators</h1><div class="highlight"><pre>
189188
<span class="sd"> ensemble_size : int, optional (default=50)</span>
190189
<span class="sd"> Number of models added to the ensemble built by *Ensemble</span>
191190
<span class="sd"> selection from libraries of models*. Models are drawn with</span>
192-
<span class="sd"> replacement.</span>
191+
<span class="sd"> replacement. If set to ``0`` no ensemble is fit.</span>
193192

194193
<span class="sd"> ensemble_nbest : int, optional (default=50)</span>
195194
<span class="sd"> Only consider the ``ensemble_nbest`` models when building an</span>
@@ -209,10 +208,14 @@ <h1>Source code for autosklearn.estimators</h1><div class="highlight"><pre>
209208
<span class="sd"> memory_limit : int, optional (3072)</span>
210209
<span class="sd"> Memory limit in MB for the machine learning algorithm.</span>
211210
<span class="sd"> `auto-sklearn` will stop fitting the machine learning algorithm if</span>
212-
<span class="sd"> it tries to allocate more than `memory_limit` MB.</span>
213-
<span class="sd"> If None is provided, no memory limit is set.</span>
214-
<span class="sd"> In case of multi-processing, `memory_limit` will be per job.</span>
215-
<span class="sd"> This memory limit also applies to the ensemble creation process.</span>
211+
<span class="sd"> it tries to allocate more than ``memory_limit`` MB.</span>
212+
<span class="sd"> </span>
213+
<span class="sd"> **Important notes:** </span>
214+
<span class="sd"> </span>
215+
<span class="sd"> * If ``None`` is provided, no memory limit is set.</span>
216+
<span class="sd"> * In case of multi-processing, ``memory_limit`` will be *per job*, so the total usage is </span>
217+
<span class="sd"> ``n_jobs x memory_limit``.</span>
218+
<span class="sd"> * The memory limit also applies to the ensemble creation process.</span>
216219

217220
<span class="sd"> include : dict, optional (None)</span>
218221
<span class="sd"> If None, all possible algorithms are used. Otherwise specifies</span>
@@ -258,10 +261,10 @@ <h1>Source code for autosklearn.estimators</h1><div class="highlight"><pre>
258261
<span class="sd"> * &#39;cv-iterative-fit&#39;: {&#39;folds&#39;: int}</span>
259262
<span class="sd"> * &#39;partial-cv&#39;: {&#39;folds&#39;: int, &#39;shuffle&#39;: bool}</span>
260263
<span class="sd"> * BaseCrossValidator or _RepeatedSplits or BaseShuffleSplit object: all arguments</span>
261-
<span class="sd"> required by chosen class as specified in scikit-learn documentation.</span>
262-
<span class="sd"> If arguments are not provided, scikit-learn defaults are used.</span>
263-
<span class="sd"> If no defaults are available, an exception is raised.</span>
264-
<span class="sd"> Refer to the &#39;n_splits&#39; argument as &#39;folds&#39;.</span>
264+
<span class="sd"> required by chosen class as specified in scikit-learn documentation.</span>
265+
<span class="sd"> If arguments are not provided, scikit-learn defaults are used.</span>
266+
<span class="sd"> If no defaults are available, an exception is raised.</span>
267+
<span class="sd"> Refer to the &#39;n_splits&#39; argument as &#39;folds&#39;.</span>
265268

266269
<span class="sd"> tmp_folder : string, optional (None)</span>
267270
<span class="sd"> folder to store configuration output and log files, if ``None``</span>
@@ -273,13 +276,15 @@ <h1>Source code for autosklearn.estimators</h1><div class="highlight"><pre>
273276

274277
<span class="sd"> n_jobs : int, optional, experimental</span>
275278
<span class="sd"> The number of jobs to run in parallel for ``fit()``. ``-1`` means</span>
276-
<span class="sd"> using all processors. By default, Auto-sklearn uses a single core</span>
277-
<span class="sd"> for fitting the machine learning model and a single core for fitting</span>
278-
<span class="sd"> an ensemble. Ensemble building is not affected by ``n_jobs`` but</span>
279-
<span class="sd"> can be controlled by the number of models in the ensemble. In</span>
280-
<span class="sd"> contrast to most scikit-learn models, ``n_jobs`` given in the</span>
281-
<span class="sd"> constructor is not applied to the ``predict()`` method. If</span>
282-
<span class="sd"> ``dask_client`` is None, a new dask client is created.</span>
279+
<span class="sd"> using all processors. </span>
280+
<span class="sd"> </span>
281+
<span class="sd"> **Important notes**: </span>
282+
<span class="sd"> </span>
283+
<span class="sd"> * By default, Auto-sklearn uses one core. </span>
284+
<span class="sd"> * Ensemble building is not affected by ``n_jobs`` but can be controlled by the number </span>
285+
<span class="sd"> of models in the ensemble.</span>
286+
<span class="sd"> * ``predict()`` is not affected by ``n_jobs`` (in contrast to most scikit-learn models)</span>
287+
<span class="sd"> * If ``dask_client`` is ``None``, a new dask client is created.</span>
283288

284289
<span class="sd"> dask_client : dask.distributed.Client, optional</span>
285290
<span class="sd"> User-created dask client, can be used to start a dask cluster and then</span>
@@ -295,7 +300,7 @@ <h1>Source code for autosklearn.estimators</h1><div class="highlight"><pre>
295300
<span class="sd"> * ``&#39;y_optimization&#39;`` : do not save the predictions for the</span>
296301
<span class="sd"> optimization/validation set, which would later on be used to build</span>
297302
<span class="sd"> an ensemble.</span>
298-
<span class="sd"> * ``&#39;model&#39;`` : do not save any model files</span>
303+
<span class="sd"> * ``model`` : do not save any model files</span>
299304

300305
<span class="sd"> smac_scenario_args : dict, optional (None)</span>
301306
<span class="sd"> Additional arguments inserted into the scenario of SMAC. See the</span>
@@ -672,7 +677,7 @@ <h1>Source code for autosklearn.estimators</h1><div class="highlight"><pre>
672677
<span class="sd"> Gives an overview of all models trained during the search process along</span>
673678
<span class="sd"> with various statistics about their training.</span>
674679

675-
<span class="sd"> The availble statistics are:</span>
680+
<span class="sd"> The available statistics are:</span>
676681

677682
<span class="sd"> **Simple**:</span>
678683

development/_modules/autosklearn/experimental/askl2.html

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
<li><a href="../../../index.html">Start</a></li>
6464
<li><a href="../../../releases.html">Releases</a></li>
6565
<li><a href="../../../installation.html">Installation</a></li>
66-
<li><a href="../../../manual.html">Manual</a></li>
6766
<li><a href="../../../examples/index.html">Examples</a></li>
6867
<li><a href="../../../api.html">API</a></li>
6968
<li><a href="../../../extending.html">Extending</a></li>
@@ -331,7 +330,7 @@ <h1>Source code for autosklearn.experimental.askl2</h1><div class="highlight"><p
331330
<span class="sd"> ensemble_size : int, optional (default=50)</span>
332331
<span class="sd"> Number of models added to the ensemble built by *Ensemble</span>
333332
<span class="sd"> selection from libraries of models*. Models are drawn with</span>
334-
<span class="sd"> replacement.</span>
333+
<span class="sd"> replacement. If set to ``0`` no ensemble is fit.</span>
335334

336335
<span class="sd"> ensemble_nbest : int, optional (default=50)</span>
337336
<span class="sd"> Only consider the ``ensemble_nbest`` models when building an</span>
@@ -351,10 +350,14 @@ <h1>Source code for autosklearn.experimental.askl2</h1><div class="highlight"><p
351350
<span class="sd"> memory_limit : int, optional (3072)</span>
352351
<span class="sd"> Memory limit in MB for the machine learning algorithm.</span>
353352
<span class="sd"> `auto-sklearn` will stop fitting the machine learning algorithm if</span>
354-
<span class="sd"> it tries to allocate more than `memory_limit` MB.</span>
355-
<span class="sd"> If None is provided, no memory limit is set.</span>
356-
<span class="sd"> In case of multi-processing, `memory_limit` will be per job.</span>
357-
<span class="sd"> This memory limit also applies to the ensemble creation process.</span>
353+
<span class="sd"> it tries to allocate more than ``memory_limit`` MB.</span>
354+
<span class="sd"> </span>
355+
<span class="sd"> **Important notes:** </span>
356+
<span class="sd"> </span>
357+
<span class="sd"> * If ``None`` is provided, no memory limit is set.</span>
358+
<span class="sd"> * In case of multi-processing, ``memory_limit`` will be *per job*, so the total usage is </span>
359+
<span class="sd"> ``n_jobs x memory_limit``.</span>
360+
<span class="sd"> * The memory limit also applies to the ensemble creation process.</span>
358361

359362
<span class="sd"> tmp_folder : string, optional (None)</span>
360363
<span class="sd"> folder to store configuration output and log files, if ``None``</span>
@@ -366,13 +369,15 @@ <h1>Source code for autosklearn.experimental.askl2</h1><div class="highlight"><p
366369

367370
<span class="sd"> n_jobs : int, optional, experimental</span>
368371
<span class="sd"> The number of jobs to run in parallel for ``fit()``. ``-1`` means</span>
369-
<span class="sd"> using all processors. By default, Auto-sklearn uses a single core</span>
370-
<span class="sd"> for fitting the machine learning model and a single core for fitting</span>
371-
<span class="sd"> an ensemble. Ensemble building is not affected by ``n_jobs`` but</span>
372-
<span class="sd"> can be controlled by the number of models in the ensemble. In</span>
373-
<span class="sd"> contrast to most scikit-learn models, ``n_jobs`` given in the</span>
374-
<span class="sd"> constructor is not applied to the ``predict()`` method. If</span>
375-
<span class="sd"> ``dask_client`` is None, a new dask client is created.</span>
372+
<span class="sd"> using all processors. </span>
373+
<span class="sd"> </span>
374+
<span class="sd"> **Important notes**: </span>
375+
<span class="sd"> </span>
376+
<span class="sd"> * By default, Auto-sklearn uses one core. </span>
377+
<span class="sd"> * Ensemble building is not affected by ``n_jobs`` but can be controlled by the number </span>
378+
<span class="sd"> of models in the ensemble.</span>
379+
<span class="sd"> * ``predict()`` is not affected by ``n_jobs`` (in contrast to most scikit-learn models)</span>
380+
<span class="sd"> * If ``dask_client`` is ``None``, a new dask client is created.</span>
376381

377382
<span class="sd"> dask_client : dask.distributed.Client, optional</span>
378383
<span class="sd"> User-created dask client, can be used to start a dask cluster and then</span>
@@ -388,7 +393,7 @@ <h1>Source code for autosklearn.experimental.askl2</h1><div class="highlight"><p
388393
<span class="sd"> * ``&#39;y_optimization&#39;`` : do not save the predictions for the</span>
389394
<span class="sd"> optimization/validation set, which would later on be used to build</span>
390395
<span class="sd"> an ensemble.</span>
391-
<span class="sd"> * ``&#39;model&#39;`` : do not save any model files</span>
396+
<span class="sd"> * ``model`` : do not save any model files</span>
392397

393398
<span class="sd"> smac_scenario_args : dict, optional (None)</span>
394399
<span class="sd"> Additional arguments inserted into the scenario of SMAC. See the</span>

development/_modules/autosklearn/metrics.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
<li><a href="../../index.html">Start</a></li>
6464
<li><a href="../../releases.html">Releases</a></li>
6565
<li><a href="../../installation.html">Installation</a></li>
66-
<li><a href="../../manual.html">Manual</a></li>
6766
<li><a href="../../examples/index.html">Examples</a></li>
6867
<li><a href="../../api.html">API</a></li>
6968
<li><a href="../../extending.html">Extending</a></li>

development/_modules/autosklearn/pipeline/components/base.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
<li><a href="../../../../index.html">Start</a></li>
6464
<li><a href="../../../../releases.html">Releases</a></li>
6565
<li><a href="../../../../installation.html">Installation</a></li>
66-
<li><a href="../../../../manual.html">Manual</a></li>
6766
<li><a href="../../../../examples/index.html">Examples</a></li>
6867
<li><a href="../../../../api.html">API</a></li>
6968
<li><a href="../../../../extending.html">Extending</a></li>

development/_modules/autosklearn/pipeline/components/classification.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
<li><a href="../../../../index.html">Start</a></li>
6464
<li><a href="../../../../releases.html">Releases</a></li>
6565
<li><a href="../../../../installation.html">Installation</a></li>
66-
<li><a href="../../../../manual.html">Manual</a></li>
6766
<li><a href="../../../../examples/index.html">Examples</a></li>
6867
<li><a href="../../../../api.html">API</a></li>
6968
<li><a href="../../../../extending.html">Extending</a></li>

development/_modules/autosklearn/pipeline/components/feature_preprocessing.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
<li><a href="../../../../index.html">Start</a></li>
6464
<li><a href="../../../../releases.html">Releases</a></li>
6565
<li><a href="../../../../installation.html">Installation</a></li>
66-
<li><a href="../../../../manual.html">Manual</a></li>
6766
<li><a href="../../../../examples/index.html">Examples</a></li>
6867
<li><a href="../../../../api.html">API</a></li>
6968
<li><a href="../../../../extending.html">Extending</a></li>

development/_modules/autosklearn/pipeline/components/regression.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
<li><a href="../../../../index.html">Start</a></li>
6464
<li><a href="../../../../releases.html">Releases</a></li>
6565
<li><a href="../../../../installation.html">Installation</a></li>
66-
<li><a href="../../../../manual.html">Manual</a></li>
6766
<li><a href="../../../../examples/index.html">Examples</a></li>
6867
<li><a href="../../../../api.html">API</a></li>
6968
<li><a href="../../../../extending.html">Extending</a></li>

development/_modules/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
<li><a href="../index.html">Start</a></li>
6464
<li><a href="../releases.html">Releases</a></li>
6565
<li><a href="../installation.html">Installation</a></li>
66-
<li><a href="../manual.html">Manual</a></li>
6766
<li><a href="../examples/index.html">Examples</a></li>
6867
<li><a href="../api.html">API</a></li>
6968
<li><a href="../extending.html">Extending</a></li>

0 commit comments

Comments
 (0)