Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ import gradio as gr
|
|
| 4 |
import torch
|
| 5 |
from transformers import AutoModelForMultipleChoice, AutoTokenizer
|
| 6 |
from huggingface_hub import hf_hub_url, Repository
|
| 7 |
-
model_id="/
|
| 8 |
# Load the model and tokenizer
|
| 9 |
|
| 10 |
model = AutoModelForMultipleChoice.from_pretrained(model_id)
|
|
|
|
| 4 |
import torch
|
| 5 |
from transformers import AutoModelForMultipleChoice, AutoTokenizer
|
| 6 |
from huggingface_hub import hf_hub_url, Repository
|
| 7 |
+
model_id="deepset/deberta-v3-large-squad2"
|
| 8 |
# Load the model and tokenizer
|
| 9 |
|
| 10 |
model = AutoModelForMultipleChoice.from_pretrained(model_id)
|