Update app.py
Browse files
app.py
CHANGED
|
@@ -3,7 +3,7 @@ from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
|
| 3 |
import gradio as gr
|
| 4 |
|
| 5 |
# Load model and tokenizer from the Hugging Face Hub
|
| 6 |
-
model_name = "Sarthak279/
|
| 7 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 8 |
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
| 9 |
|
|
|
|
| 3 |
import gradio as gr
|
| 4 |
|
| 5 |
# Load model and tokenizer from the Hugging Face Hub
|
| 6 |
+
model_name = "Sarthak279/Disease-symptom-prediction"
|
| 7 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 8 |
model = AutoModelForSequenceClassification.from_pretrained(model_name)
|
| 9 |
|