Spaces:
Build error
Build error
Update src/models/qa_model.py
Browse files- src/models/qa_model.py +1 -1
src/models/qa_model.py
CHANGED
@@ -16,7 +16,7 @@ class QAEnsembleModel(nn.Module):
|
|
16 |
model = AutoModelForQuestionAnswering.from_pretrained(model_name)#.half()
|
17 |
model.load_state_dict(torch.load(model_checkpoint, map_location=torch.device('cpu')), strict=False)
|
18 |
nlp = pipeline('question-answering', model=model,
|
19 |
-
tokenizer=model_name, device=
|
20 |
self.nlps.append(nlp)
|
21 |
self.entity_dict = entity_dict
|
22 |
self.thr = thr
|
|
|
16 |
model = AutoModelForQuestionAnswering.from_pretrained(model_name)#.half()
|
17 |
model.load_state_dict(torch.load(model_checkpoint, map_location=torch.device('cpu')), strict=False)
|
18 |
nlp = pipeline('question-answering', model=model,
|
19 |
+
tokenizer=model_name, device=device)
|
20 |
self.nlps.append(nlp)
|
21 |
self.entity_dict = entity_dict
|
22 |
self.thr = thr
|