Skip to content

Commit 5dcaaf7

Browse files
amuellerGaelVaroquaux
authored andcommitted
FIX docstring for count vectorizer. Sorry about that.
1 parent 8b0219a commit 5dcaaf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/modules/feature_extraction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ reasonable (please see the :ref:`reference documentation
188188
charset_error='strict', dtype=<type 'long'>, input='content',
189189
lowercase=True, max_df=1.0, max_features=None, max_n=None, min_df=1,
190190
min_n=None, ngram_range=(1, 1), preprocessor=None, stop_words=None,
191-
strip_accents=None, token_pattern=u'\\b\\w\\w+\\b', tokenizer=None,
191+
strip_accents=None, token_pattern=u'(?u)\\b\\w\\w+\\b', tokenizer=None,
192192
vocabulary=None)
193193

194194
Let's use it to tokenize and count the word occurrences of a minimalistic

0 commit comments

Comments
 (0)