8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5313325 commit acf3babCopy full SHA for acf3bab
sklearn/_config.py
@@ -33,12 +33,16 @@ def set_config(assume_finite=None, working_memory=None):
33
False, validation for finiteness will be performed,
34
avoiding error. Global default: False.
35
36
+ .. versionadded:: 0.19
37
+
38
working_memory : int, optional
39
If set, scikit-learn will attempt to limit the size of temporary arrays
40
to this number of MiB (per job when parallelised), often saving both
41
computation time and memory on expensive operations that can be
42
performed in chunks. Global default: 1024.
43
44
+ .. versionadded:: 0.20
45
46
"""
47
if assume_finite is not None:
48
_global_config['assume_finite'] = assume_finite
0 commit comments