Sangjun2 commited on
Commit
99e64b9
·
verified ·
1 Parent(s): 428cc21

change map location to cpu

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,7 +49,7 @@ t5_model_path = './ke_t5.pt'
49
  def load_model1():
50
  processor1 = Pix2StructProcessor.from_pretrained('nuua/ko-deplot')
51
  model1 = Pix2StructForConditionalGeneration.from_pretrained('nuua/ko-deplot')
52
- model1.load_state_dict(torch.load(ko_deplot_model_path, map_location=device))
53
  model1.to(device)
54
  return processor1,model1
55
 
@@ -60,7 +60,7 @@ processor1,model1=load_model1()
60
  def load_model2():
61
  processor2 = AutoProcessor.from_pretrained("ybelkada/pix2struct-base")
62
  model2 = Pix2StructForConditionalGeneration.from_pretrained("ybelkada/pix2struct-base")
63
- model2.load_state_dict(torch.load(aihub_deplot_model_path, map_location=device))
64
  model2.to(device)
65
  return processor2,model2
66
 
 
49
  def load_model1():
50
  processor1 = Pix2StructProcessor.from_pretrained('nuua/ko-deplot')
51
  model1 = Pix2StructForConditionalGeneration.from_pretrained('nuua/ko-deplot')
52
+ model1.load_state_dict(torch.load(ko_deplot_model_path, map_location="cpu"))
53
  model1.to(device)
54
  return processor1,model1
55
 
 
60
  def load_model2():
61
  processor2 = AutoProcessor.from_pretrained("ybelkada/pix2struct-base")
62
  model2 = Pix2StructForConditionalGeneration.from_pretrained("ybelkada/pix2struct-base")
63
+ model2.load_state_dict(torch.load(aihub_deplot_model_path, map_location="cpu"))
64
  model2.to(device)
65
  return processor2,model2
66