HaoFeng2019 commited on
Commit
759cd1c
·
1 Parent(s): eb95227

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -38,20 +38,20 @@ class GeoTr_Seg(nn.Module):
38
 
39
  # Initialize models
40
  GeoTr_Seg_model = GeoTr_Seg()
41
- IllTr_model = IllTr()
42
 
43
  # Load models only once
44
  reload_segmodel(GeoTr_Seg_model.msk, './model_pretrained/seg.pth')
45
  reload_model(GeoTr_Seg_model.GeoTr, './model_pretrained/geotr.pth')
46
- reload_model(IllTr_model, './model_pretrained/illtr.pth')
47
 
48
  # Compile models (assuming PyTorch 2.0)
49
  GeoTr_Seg_model = torch.compile(GeoTr_Seg_model)
50
- IllTr_model = torch.compile(IllTr_model)
51
 
52
  def process_image(input_image):
53
  GeoTr_Seg_model.eval()
54
- IllTr_model.eval()
55
 
56
  im_ori = np.array(input_image)[:, :, :3] / 255.
57
  h, w, _ = im_ori.shape
 
38
 
39
  # Initialize models
40
  GeoTr_Seg_model = GeoTr_Seg()
41
+ #IllTr_model = IllTr()
42
 
43
  # Load models only once
44
  reload_segmodel(GeoTr_Seg_model.msk, './model_pretrained/seg.pth')
45
  reload_model(GeoTr_Seg_model.GeoTr, './model_pretrained/geotr.pth')
46
+ #reload_model(IllTr_model, './model_pretrained/illtr.pth')
47
 
48
  # Compile models (assuming PyTorch 2.0)
49
  GeoTr_Seg_model = torch.compile(GeoTr_Seg_model)
50
+ #IllTr_model = torch.compile(IllTr_model)
51
 
52
  def process_image(input_image):
53
  GeoTr_Seg_model.eval()
54
+ #IllTr_model.eval()
55
 
56
  im_ori = np.array(input_image)[:, :, :3] / 255.
57
  h, w, _ = im_ori.shape