Spaces:
Runtime error
Runtime error
Commit
·
b10beb4
1
Parent(s):
d2dc636
Update app.py
Browse files
app.py
CHANGED
@@ -67,7 +67,7 @@ with model_results:
|
|
67 |
|
68 |
# instantiating count vectorizor
|
69 |
tfidf = TfidfVectorizer(stop_words=stop_words)
|
70 |
-
X_train = joblib.load(open('
|
71 |
X_test = lemmatized_output
|
72 |
X_train_count = tfidf.fit_transform(X_train)
|
73 |
X_test_count = tfidf.transform(X_test)
|
|
|
67 |
|
68 |
# instantiating count vectorizor
|
69 |
tfidf = TfidfVectorizer(stop_words=stop_words)
|
70 |
+
X_train = joblib.load(open('main/X_train.pickel', 'rb'))
|
71 |
X_test = lemmatized_output
|
72 |
X_train_count = tfidf.fit_transform(X_train)
|
73 |
X_test_count = tfidf.transform(X_test)
|