tuongvxx1 commited on
Commit
3d48c86
1 Parent(s): 21776ed

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ tokenizer = AutoTokenizer.from_pretrained("VietAI/vit5-base")
8
  model = AutoModelForSeq2SeqLM.from_pretrained("VietAI/vit5-base")
9
  model_file = hf_hub_download(repo_id="tuongvxx1/medBot", filename="medicalBot_ver4_2.pth")
10
  state_dict = torch.load(model_file, map_location=torch.device('cpu'))
11
- model.load_state_dict(new_state_dict)
12
  model.to(device)
13
 
14
  def generate_answer(question, model, tokenizer, device):
 
8
  model = AutoModelForSeq2SeqLM.from_pretrained("VietAI/vit5-base")
9
  model_file = hf_hub_download(repo_id="tuongvxx1/medBot", filename="medicalBot_ver4_2.pth")
10
  state_dict = torch.load(model_file, map_location=torch.device('cpu'))
11
+ model.load_state_dict(state_dict)
12
  model.to(device)
13
 
14
  def generate_answer(question, model, tokenizer, device):