-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
DOC numpy doc update for function check_memory #23039
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOC numpy doc update for function check_memory #23039
Conversation
sklearn/utils/validation.py
Outdated
If string or None, the location on which we want to create the joblib.Memory \ | ||
interface. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If string or None, the location on which we want to create the joblib.Memory \ | |
interface. | |
If string, the location on which we want to create the `joblib.Memory` | |
interface. If None is given, no caching is done and the Memory object | |
is completely transparent. |
Otherwise LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would even do
If string or None, the location on which we want to create the joblib.Memory \ | |
interface. | |
- If string, the location where to create the `joblib.Memory` interface. | |
- If None, no caching is done and the Memory object is completely transparent. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your suggestions! the PR is updated :)
…arn/utils/validation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @MarieS-WiMLDS
…eck_memory #21350
Reference Issues/PRs
Reference issue: 21350
What does this implement/fix? Explain your changes.
This fixes the numpydoc for the function check_memory in sklearn/utils/validation.py.
Any other comments?