Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroschoen committed Mar 5, 2024
1 parent 06d2c51 commit 5678be9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/training/test_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,11 +393,11 @@ def test_nlp_logistic_classification_learner():

# test keep_tfidf_object case
learner_keep_tfidf = nlp_logistic_classification_learner(text_feature_cols=["text1", "text2"],
target="y",
vectorizer_params={"min_df": 1},
logistic_params=None,
prediction_column="prediction",
keep_tfidf_object=True)
target="y",
vectorizer_params={"min_df": 1},
logistic_params=None,
prediction_column="prediction",
keep_tfidf_object=True)

predict_fn, pred_train, log = learner_keep_tfidf(df_train_binary)

Expand Down

0 comments on commit 5678be9

Please sign in to comment.