Spaces:
Paused
Paused
Commit
·
89057d0
1
Parent(s):
8326577
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,8 @@ from nltk.tokenize import word_tokenize
|
|
6 |
import timm
|
7 |
|
8 |
tokenizer = BertTokenizerFast.from_pretrained('bert-base-uncased')
|
9 |
-
model = timm.create_model('hf_hub:pseudolab/AI_Tutor_BERT', pretrained=True)
|
10 |
#model = BertForQuestionAnswering.from_pretrained("bert-base-uncased")
|
|
|
11 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
12 |
|
13 |
# def get_prediction(context, question):
|
|
|
6 |
import timm
|
7 |
|
8 |
tokenizer = BertTokenizerFast.from_pretrained('bert-base-uncased')
|
|
|
9 |
#model = BertForQuestionAnswering.from_pretrained("bert-base-uncased")
|
10 |
+
model = BertForQuestionAnswering.from_pretrained("CountingMstar/ai-tutor-bert-model")
|
11 |
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
|
12 |
|
13 |
# def get_prediction(context, question):
|