Spaces:
Sleeping
Sleeping
Commit ·
bb73bcb
1
Parent(s): bc32fa0
updated app file for knn model
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ from sklearn.feature_extraction.text import CountVectorizer
|
|
| 13 |
import joblib
|
| 14 |
|
| 15 |
# Load the saved model
|
| 16 |
-
model_file = "
|
| 17 |
loaded_model = load(model_file)
|
| 18 |
|
| 19 |
def predict_drug(text_input):
|
|
|
|
| 13 |
import joblib
|
| 14 |
|
| 15 |
# Load the saved model
|
| 16 |
+
model_file = "drug_finder_3i_knn.joblib"
|
| 17 |
loaded_model = load(model_file)
|
| 18 |
|
| 19 |
def predict_drug(text_input):
|