osheina commited on
Commit
3fa3430
·
verified ·
1 Parent(s): 719972e

Update strim_nlp.py

Browse files
Files changed (1) hide show
  1. 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('/Users/olgaseina/Desktop/NLP_project/cat_model4.cbm')
29
 
30
- tfidf_vectorizer = load('/Users/olgaseina/Desktop/NLP_project/tfidf_vectorizer.joblib')
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("Классификация отзывов о медицинских учреждениях")