Spaces:
Runtime error
Runtime error
Commit
·
64e7b97
1
Parent(s):
673a35d
Update app.py
Browse files
app.py
CHANGED
@@ -72,7 +72,7 @@ with model_results:
|
|
72 |
X_test_count = tfidf.transform(X_test)
|
73 |
|
74 |
# loading in model
|
75 |
-
final_model = joblib.load(open('final_bayes.
|
76 |
|
77 |
# apply model to make predictions
|
78 |
prediction = final_model.predict(X_test_count[0])
|
|
|
72 |
X_test_count = tfidf.transform(X_test)
|
73 |
|
74 |
# loading in model
|
75 |
+
final_model = joblib.load(open('resources/final_bayes.pickel', 'rb'))
|
76 |
|
77 |
# apply model to make predictions
|
78 |
prediction = final_model.predict(X_test_count[0])
|