SAM-Adapter-PyTorch icon indicating copy to clipboard operation
SAM-Adapter-PyTorch copied to clipboard

Adapting Meta AI's Segment Anything to Downstream Tasks with Adapters and Prompts

Results 50 SAM-Adapter-PyTorch issues
Sort by recently updated
recently updated
newest added

Hello authors, Thanks so much for sharing these codes. The codes are very useful to fine-tune SAM for downstream works : ) I reduced datasize, adapted the codes and run...

i found validation results is different with test results, when you are training , when you utlize multi-GPU ddp. is any one same as me?

Hello, we recently want to compare our work with your excellent work. Could you please give me a ViT-B pretrained model for COD task? Thank you very much

> size mismatch for image_encoder.blocks.23.mlp.lin1.weight: copying a param with shape torch.Size([4096, 1024]) from checkpoint, the shape in current model is torch.Size([5120, 1280]). size mismatch for image_encoder.blocks.23.mlp.lin1.bias: copying a param with...

Hi , I have some problem when I try to use the model I trained. The first question is that , I use the config of vit-h and my GPU...

ERROR: Cannot install -r requirements.txt (line 1), -r requirements.txt (line 14), -r requirements.txt (line 15), -r requirements.txt (line 4), -r requirements.txt (line 6), -r requirements.txt (line 7) and numpy~=1.20.3 because...

您好, 数据标准化的方法,即yaml文件里的data_norm的sub和div什么意思?谢谢回答。

I would like to ask how the comparative experiment "SAM" in the paper is operated, because the SAM source code will segment all objects (such as trees and houses next...

@tianrun-chen In func eval_psnr(),`pred_list = torch.cat(pred_list, 1) gt_list = torch.cat(gt_list, 1)` should be `pred_list = torch.cat(pred_list, 0) gt_list = torch.cat(gt_list, 0)`