File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,13 @@ def __init__(
97
97
Memory limit in MB for the machine learning algorithm.
98
98
`auto-sklearn` will stop fitting the machine learning algorithm if
99
99
it tries to allocate more than ``memory_limit`` MB.
100
+
101
+ **Important notes:**
102
+
103
+ * If ``None`` is provided, no memory limit is set.
104
+ * In case of multi-processing, ``memory_limit`` will be *per job*, so the total usage is
105
+ ``n_jobs x memory_limit``.
106
+ * The memory limit also applies to the ensemble creation process.
100
107
101
108
**Important notes:**
102
109
Original file line number Diff line number Diff line change 198
198
('Start' , 'index' ),
199
199
('Releases' , 'releases' ),
200
200
('Installation' , 'installation' ),
201
- ('Manual' , 'manual' ),
201
+ # ('Manual', 'manual'),
202
202
('Examples' , 'examples/index' ),
203
203
('API' , 'api' ),
204
204
('Extending' , 'extending' ),
Original file line number Diff line number Diff line change 41
41
"seaborn" ,
42
42
],
43
43
"docs" : [
44
- "sphinx<4.3 " ,
45
- "sphinx-gallery" ,
44
+ "sphinx" ,
45
+ "sphinx-gallery<=0.10.0 " ,
46
46
"sphinx_bootstrap_theme" ,
47
47
"numpydoc" ,
48
48
"sphinx_toolbox" ,
49
- "docutils==0.16"
50
49
],
51
50
}
52
51
You can’t perform that action at this time.
0 commit comments