Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvement of automatic text detection #903

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
- max_features of tfidf is set to 10e5 to reduce memory consumption
  • Loading branch information
andreygetmanov committed Dec 19, 2022
commit 507d136ffafbb1acc625f34b8d5f3a2247c07948
3 changes: 2 additions & 1 deletion fedot/core/repository/data/default_operation_params.json
Original file line number Diff line number Diff line change
@@ -139,7 +139,8 @@
},
"tfidf": {
"min_df": 0.01,
"max_df": 0.9
"max_df": 0.9,
"max_features": 100000
},
"fast_ica": {
"whiten": "unit-variance"