We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6c1ec7 commit 4b9e0d9Copy full SHA for 4b9e0d9
1 file changed
src/feature_extractors.py
@@ -4,8 +4,6 @@
4
5
def tfidf_params(trial: optuna.trial.FrozenTrial):
6
max_df = trial.suggest_float("tfidf__max_df", 0.5, 1.0)
7
- #max_df = 0.875
8
- #min_df = 3
9
10
min_df = trial.suggest_int("tfidf__min_df", 1, 10)
11
0 commit comments