tuongvxx1 commited on
Commit
618c89f
1 Parent(s): 760012a

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.pth")
10
 
11
- state_dict = torch.load('medicalBot_ver4.pth', map_location=torch.device('cpu'))
12
  from collections import OrderedDict
13
  new_state_dict = OrderedDict()
14
  for k, v in state_dict.items():
 
8
  model = AutoModelForSeq2SeqLM.from_pretrained("VietAI/vit5-base")
9
  model_file = hf_hub_download(repo_id="tuongvxx1/medBot", filename="medicalBot_ver4.pth")
10
 
11
+ state_dict = torch.load(model_file, map_location=torch.device('cpu'))
12
  from collections import OrderedDict
13
  new_state_dict = OrderedDict()
14
  for k, v in state_dict.items():