Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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="
|
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").
|
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
|