-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
DOC glossary on n_jobs=None semantics #11806
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
Conversation
doc/conf.py
Outdated
@@ -237,6 +237,7 @@ | |||
'scipy': ('https://docs.scipy.org/doc/scipy/reference', None), | |||
'matplotlib': ('https://matplotlib.org/', None), | |||
'pandas': ('https://pandas.pydata.org/pandas-docs/stable/', None), | |||
'joblib': ('https://pythonhosted.org/joblib/', None), |
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.
Should be https://joblib.readthedocs.io
?
Probably! Google still prefers the pythonhosted docs, which should probably
be removed...
|
Maybe we can borrow things from their doc: |
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.
LGTM, ping @rth
Possible problem: we're actually using built-in joblib, so the doc might be inconsistent with our joblib in the future (before we update to the latest version).
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.
LGTM, thanks!
Part of #11771