Views
No views yet
| Hyperparameter | Value |
|---|---|
| memory | |
| steps | [('vect', CountVectorizer()), ('tfidf', TfidfTransformer()), ('clf', MultinomialNB())] |
| verbose | False |
| vect | CountVectorizer() |
| tfidf | TfidfTransformer() |
| clf | MultinomialNB() |
| vect__analyzer | word |
| vect__binary | False |
| vect__decode_error | strict |
| vect__dtype | <class 'numpy.int64'> |
| vect__encoding | utf-8 |
| vect__input | content |
| vect__lowercase | True |
| vect__max_df | 1.0 |
| vect__max_features | |
| vect__min_df | 1 |
| vect__ngram_range | (1, 1) |
| vect__preprocessor | |
| vect__stop_words | |
| vect__strip_accents | |
| vect__token_pattern | (?u)\b\w\w+\b |
| vect__tokenizer | |
| vect__vocabulary | |
| tfidf__norm | l2 |
| tfidf__smooth_idf | True |
| tfidf__sublinear_tf | False |
| tfidf__use_idf | True |
| clf__alpha | 1.0 |
| clf__class_prior | |
| clf__fit_prior | True |
| Metric | Value |
|---|
1import pickle
2with open(pkl_filename, 'rb') as file:
3 clf = pickle.load(file)bibtex
@inproceedings{...,year={2020}}