Sangjun2 commited on
Commit
a27602a
·
verified ·
1 Parent(s): e879642

change load_model1 method(load model to cpu not gpu)

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -37,6 +37,7 @@ warnings.filterwarnings('ignore')
37
  MAX_PATCHES = 512
38
  # Load the models and processor
39
  #device = torch.device("cpu")
 
40
 
41
  # Paths to the models
42
  ko_deplot_model_path = './deplot_model_ver_kor_24.7.25_refinetuning_epoch3.bin'
@@ -44,12 +45,11 @@ aihub_deplot_model_path='./deplot_k.pt'
44
  t5_model_path = './ke_t5.pt'
45
 
46
  # Load first model ko-deplot
47
- @spaces.GPU(enable_queue=True,duration=120)
48
  def load_model1():
49
  processor1 = Pix2StructProcessor.from_pretrained('nuua/ko-deplot')
50
  model1 = Pix2StructForConditionalGeneration.from_pretrained('nuua/ko-deplot')
51
  model1.load_state_dict(torch.load(ko_deplot_model_path, map_location="cpu"))
52
- model1.to(torch.device("cuda"))
53
  return processor1,model1
54
 
55
  processor1,model1=load_model1()
 
37
  MAX_PATCHES = 512
38
  # Load the models and processor
39
  #device = torch.device("cpu")
40
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
41
 
42
  # Paths to the models
43
  ko_deplot_model_path = './deplot_model_ver_kor_24.7.25_refinetuning_epoch3.bin'
 
45
  t5_model_path = './ke_t5.pt'
46
 
47
  # Load first model ko-deplot
48
+
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
  return processor1,model1
54
 
55
  processor1,model1=load_model1()