-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
DOC Add links to plot_document_clustering example #26951
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 Add links to plot_document_clustering example #26951
Conversation
sklearn/feature_extraction/text.py
Outdated
@@ -602,6 +602,9 @@ class HashingVectorizer( | |||
|
|||
The hash function employed is the signed 32-bit version of Murmurhash3. | |||
|
|||
For an example of document clustering and comparision with ``TfidfVectorizer``, |
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.
For an example of document clustering and comparision with ``TfidfVectorizer``, | |
For an example of document clustering and comparision with :class:`~sklearn.feature_extraction.text.TfidfVectorizer`, |
sklearn/feature_extraction/text.py
Outdated
@@ -1755,6 +1758,9 @@ class TfidfVectorizer(CountVectorizer): | |||
Equivalent to :class:`CountVectorizer` followed by | |||
:class:`TfidfTransformer`. | |||
|
|||
For an example of document clustering and comparision with ``HashingVectorizer``, |
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.
same as above, with a link to the class.
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
Hi @Tialo are you still working in this PR? Can you please solve the conflicts? |
…/add-plot-document-clusteting-example-links
@ArturoAmorQ Sure, done |
Reference Issues/PRs
This adds links to
text/plot_document_clustering.py
examples as mentioned in #26927What does this implement/fix? Explain your changes.
This PR adds links to
text/plot_document_clustering.py
example file to classes:TfidfVectorizer
HashingVectorizer
Any other comments?