8000 MNT Add versionadded to set_config parameters · scikit-learn/scikit-learn@acf3bab · GitHub
[go: up one dir, main page]

Skip to content

Commit acf3bab

Browse files
committed
MNT Add versionadded to set_config parameters
1 parent 5313325 commit acf3bab

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

sklearn/_config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,16 @@ def set_config(assume_finite=None, working_memory=None):
3333
False, validation for finiteness will be performed,
3434
avoiding error. Global default: False.
3535
36+
.. versionadded:: 0.19
37+
3638
working_memory : int, optional
3739
If set, scikit-learn will attempt to limit the size of temporary arrays
3840
to this number of MiB (per job when parallelised), often saving both
3941
computation time and memory on expensive operations that can be
4042
performed in chunks. Global default: 1024.
4143
44+
.. versionadded:: 0.20
45+
4246
"""
4347
if assume_finite is not None:
4448
_global_config['assume_finite'] = assume_finite

0 commit comments

Comments
 (0)
0