MendelXu / SAN

Open-vocabulary Semantic Segmentation
https://mendelxu.github.io/SAN/
MIT License
295 stars 27 forks source link

SAN ensemble #17

Closed sunwhw closed 1 year ago

sunwhw commented 1 year ago

Thanks for your great work! Is there any code implementation about "SAN ensemble"(mentioned in Table 2 of the paper) ?

MendelXu commented 1 year ago

Sorry that I have not prepared a clean code to do that. But you may look at https://gist.github.com/MendelXu/105c7b91ba4b59b75acd488f6304b50f for a reference. Note that the input is path of a file which contains the command args of different models, like:

--config-file a.yaml MODEL.WEIGHTS ./output/a/model
--config-file b.yaml MODEL.WEIGHTS ./output/b/model

Note that some modules have been removed in this project, please double check the script before using it.

sunwhw commented 1 year ago

Oh, Thanks!