Commit 3661625b authored by Andrey Getmanov's avatar Andrey Getmanov
Browse files

- fixed bug with crash on tuning

No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -286,7 +286,7 @@ class PipelineSearchSpace(SearchSpace):
},
'tfidf': {
'ngram_range': (hp.choice, [[(1, 1), (1, 2), (1, 3)]]),
'min_df': (hp.uniform, [0.0001, 0.1]),
'min_df': (hp.uniform, [0.0001, 0.01]),
'max_df': (hp.uniform, [0.9, 0.99])
},
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment