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 239482f commit 2cf145dCopy full SHA for 2cf145d
sklearn/_config.py
@@ -23,6 +23,8 @@ def get_config():
23
def set_config(assume_finite=None, working_memory=None):
24
"""Set global scikit-learn configuration
25
26
+ .. versionadded:: 0.19
27
+
28
Parameters
29
----------
30
assume_finite : bool, optional
@@ -37,7 +39,6 @@ def set_config(assume_finite=None, working_memory=None):
37
39
computation time and memory on expensive operations that can be
38
40
performed in chunks. Global default: 1024.
41
- .. versionadded:: 0.19
42
"""
43
if assume_finite is not None:
44
_global_config['assume_finite'] = assume_finite
0 commit comments