Spaces:
Sleeping
Sleeping
Update strim_nlp.py
Browse files- strim_nlp.py +2 -2
strim_nlp.py
CHANGED
@@ -25,9 +25,9 @@ def lemmatize_text(text):
|
|
25 |
return ' '.join(lemmas)
|
26 |
|
27 |
model = CatBoostClassifier()
|
28 |
-
model.load_model('
|
29 |
|
30 |
-
tfidf_vectorizer = load('
|
31 |
|
32 |
def classic_ml_page():
|
33 |
st.title("Классификация отзывов о медицинских учреждениях")
|
|
|
25 |
return ' '.join(lemmas)
|
26 |
|
27 |
model = CatBoostClassifier()
|
28 |
+
model.load_model('cat_model4.cbm')
|
29 |
|
30 |
+
tfidf_vectorizer = load('tfidf_vectorizer.joblib')
|
31 |
|
32 |
def classic_ml_page():
|
33 |
st.title("Классификация отзывов о медицинских учреждениях")
|