foxxy-hm commited on
Commit
333bda5
·
1 Parent(s): 60b7156

Update src/models/qa_model.py

Browse files
Files changed (1) hide show
  1. 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=0)
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