CASIA-IVA-Lab / FastSAM

Fast Segment Anything
GNU Affero General Public License v3.0
7.47k stars 707 forks source link

Great work,question about object proposal results code #118

Open woshitiancai321 opened 1 year ago

woshitiancai321 commented 1 year ago

If possible, could you share the evaluation code for Object proposal generation and instance segmentation in the paper? I have been searching for it for a long time but haven't found it yet.

zxDeepDiver commented 1 year ago

Hi, contact @berry-ding by email (in the FastSAM paper) for the code.

woshitiancai321 commented 1 year ago

i contact him by email , but i dont get any reply ...

Shengjie-Guo commented 6 months ago

If possible, could you share the evaluation code for Object proposal generation and instance segmentation in the paper? I have been searching for it for a long time but haven't found it yet.

Hi! Have you found this kind of modifying the SAM-like model into a proposal generation inference and evaluation model? I want to finetune a SAM-like model on my private data and evaluate this proposal generation ability.

berry-ding commented 6 months ago

If possible, could you share the evaluation code for Object proposal generation and instance segmentation in the paper? I have been searching for it for a long time but haven't found it yet.

Hi! Have you found this kind of modifying the SAM-like model into a proposal generation inference and evaluation model? I want to finetune a SAM-like model on my private data and evaluate this proposal generation ability.

hi, if you want to evaluate SAM-like model, you could use https://github.com/facebookresearch/segment-anything/blob/main/scripts/amg.py to generate proposals and save them to json.

Additionally, you could use official lvis-api, pycocotools or our modified code (https://github.com/CASIA-IVA-Lab/FastSAM/releases/tag/v0.0.2) to evaluate

Shengjie-Guo commented 6 months ago

If possible, could you share the evaluation code for Object proposal generation and instance segmentation in the paper? I have been searching for it for a long time but haven't found it yet.

Hi! Have you found this kind of modifying the SAM-like model into a proposal generation inference and evaluation model? I want to finetune a SAM-like model on my private data and evaluate this proposal generation ability.

hi, if you want to evaluate SAM-like model, you could use https://github.com/facebookresearch/segment-anything/blob/main/scripts/amg.py to generate proposals and save them to json.

Additionally, you could use official lvis-api, pycocotools or our modified code (https://github.com/CASIA-IVA-Lab/FastSAM/releases/tag/v0.0.2) to evaluate Thank you for your effort of open-source! Wish you all the accepting this year!