Skip to content
Snippets Groups Projects
Commit f302617b authored by Mathieu Blondel's avatar Mathieu Blondel
Browse files

Make max_df to 1.0 by default.

parent f3e3fcdf
Branches
Tags
No related merge requests found
......@@ -228,7 +228,7 @@ class BaseCountVectorizer(BaseEstimator):
Type of the matrix returned by fit_transform() or transform().
"""
def __init__(self, analyzer=DEFAULT_ANALYZER, vocabulary={}, max_df=0.5,
def __init__(self, analyzer=DEFAULT_ANALYZER, vocabulary={}, max_df=1.0,
max_features=None, dtype=long):
self.analyzer = analyzer
self.vocabulary = vocabulary
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment