-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
DOC Add wikipedia principal eigenvector example to API docs #30017
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
sklearn/utils/extmath.py
Outdated
@@ -482,6 +482,9 @@ def randomized_svd( | |||
.. [3] An implementation of a randomized algorithm for principal component | |||
analysis A. Szlam et al. 2014 | |||
|
|||
See:ref:`sphx_glr_auto_examples_applications_wikipedia_principal_eigenvector.py` |
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.
Move this change in the long summary of the function.
Instead of "how to use the API", basically the example shows a typical case where randomized SVD was used: ranking of web pages also known as PageRank.
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.
Since the changes were minimum, I pushed directly in the branch.
I'll check the rendering of the page and I'll merge the PR.
Thanks @azyleee
…earn#30017) Co-authored-by: Guillaume Lemaitre <guillaume@probabl.ai>
Reference Issues/PRs
Fixes #26927
What does this implement/fix? Explain your changes.
Add
wikipedia_principal_eigenvector.py
example reference inrandomized_svd
docstring