Hi,
The documentation for fit_transform method of the Count_Vectorizer class have an inconsistency I think:
Learn the vocabulary dictionary and return term-document matrix.
versus
Returns
-------
X : array, [n_samples, n_features]
Document-term matrix.
Not a major issue but can be confusing.
It should be
Learn the vocabulary dictionary and return document-term matrix.
to be consistent and in line with code.
I can correct it if you wish.
|
"""Learn the vocabulary dictionary and return term-document matrix. |