hustvl / EVF-SAM

Official code of "EVF-SAM: Early Vision-Language Fusion for Text-Prompted Segment Anything Model"
Apache License 2.0
311 stars 13 forks source link

Ask for MAE Pretrained Encoder used for weight initialization before training #18

Closed Le-Bao-181003 closed 2 months ago

Le-Bao-181003 commented 2 months ago

I'm learning about the structure of the SAM model, and I'm wondering where you get the weights to initialize. Thank you.

CoderZhangYx commented 2 months ago

For pretrained BEiT-3, look at https://github.com/microsoft/unilm/tree/master/beit3#download-checkpoints. For pretrained SAM, look at https://github.com/facebookresearch/segment-anything?tab=readme-ov-file#model-checkpoints)

Le-Bao-181003 commented 2 months ago

Thanks for answering my question.