File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,9 @@ class DictVectorizer(TransformerMixin, BaseEstimator):
42
42
Features that do not occur in a sample (mapping) will have a zero value
43
43
in the resulting array/matrix.
44
44
45
+ For an efficiency comparision of the different feature extractors, see
46
+ :ref:`sphx_glr_auto_examples_text_plot_hashing_vs_dict_vectorizer.py`.
47
+
45
48
Read more in the :ref:`User Guide <dict_feature_extraction>`.
46
49
47
50
Parameters
Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ class FeatureHasher(TransformerMixin, BaseEstimator):
34
34
where memory is tight, e.g. when running prediction code on embedded
35
35
devices.
36
36
37
+ For an efficiency comparision of the different feature extractors, see
38
+ :ref:`sphx_glr_auto_examples_text_plot_hashing_vs_dict_vectorizer.py`.
39
+
37
40
Read more in the :ref:`User Guide <feature_hashing>`.
38
41
39
42
.. versionadded:: 0.13
Original file line number Diff line number Diff line change @@ -602,6 +602,9 @@ class HashingVectorizer(
602
602
603
603
The hash function employed is the signed 32-bit version of Murmurhash3.
604
604
605
+ For an efficiency comparision of the different feature extractors, see
606
+ :ref:`sphx_glr_auto_examples_text_plot_hashing_vs_dict_vectorizer.py`.
607
+
605
608
Read more in the :ref:`User Guide <text_feature_extraction>`.
606
609
607
610
Parameters
@@ -933,6 +936,9 @@ class CountVectorizer(_VectorizerMixin, BaseEstimator):
933
936
that does some kind of feature selection then the number of features will
934
937
be equal to the vocabulary size found by analyzing the data.
935
938
939
+ For an efficiency comparision of the different feature extractors, see
940
+ :ref:`sphx_glr_auto_examples_text_plot_hashing_vs_dict_vectorizer.py`.
941
+
936
942
Read more in the :ref:`User Guide <text_feature_extraction>`.
937
943
938
944
Parameters
@@ -1758,6 +1764,9 @@ class TfidfVectorizer(CountVectorizer):
1758
1764
For an example of usage, see
1759
1765
:ref:`sphx_glr_auto_examples_text_plot_document_classification_20newsgroups.py`.
1760
1766
1767
+ For an efficiency comparision of the different feature extractors, see
1768
+ :ref:`sphx_glr_auto_examples_text_plot_hashing_vs_dict_vectorizer.py`.
1769
+
1761
1770
Read more in the :ref:`User Guide <text_feature_extraction>`.
1762
1771
1763
1772
Parameters
You can’t perform that action at this time.
0 commit comments