wondervictor commited on
Commit
c76ca4e
·
verified ·
1 Parent(s): 0221ae2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -85,7 +85,7 @@ def initialize_models(sam_path, adapter_pth, model_cfg, cfg):
85
 
86
  # SAM2初始化
87
  if sam2_model is None:
88
- sam2_model = build_sam2(model_cfg, sam_path, device="cuda", apply_postprocessing=False)
89
  print("SAM2 model initialized.")
90
 
91
  # CLIP模型初始化
@@ -95,7 +95,7 @@ def initialize_models(sam_path, adapter_pth, model_cfg, cfg):
95
 
96
  # Mask Adapter模型初始化
97
  if mask_adapter is None:
98
- mask_adapter = build_mask_adapter(cfg, "MASKAdapterHead").cuda()
99
  # 加载Adapter状态字典
100
  adapter_state_dict = torch.load(adapter_pth)
101
  adapter_state_dict = {k.replace('mask_adapter.', '').replace('adapter.', ''): v
 
85
 
86
  # SAM2初始化
87
  if sam2_model is None:
88
+ sam2_model = build_sam2(model_cfg, sam_path, device="cpu", apply_postprocessing=False)
89
  print("SAM2 model initialized.")
90
 
91
  # CLIP模型初始化
 
95
 
96
  # Mask Adapter模型初始化
97
  if mask_adapter is None:
98
+ mask_adapter = build_mask_adapter(cfg, "MASKAdapterHead").cpu()
99
  # 加载Adapter状态字典
100
  adapter_state_dict = torch.load(adapter_pth)
101
  adapter_state_dict = {k.replace('mask_adapter.', '').replace('adapter.', ''): v