Views
No views yet






git clone git@github.com:HVision-NKU/DenseVLM.git
cd DenseVLM
conda create -n DenseVLM python=3.8.20
conda activate DenseVLM
pip install -r requirements.txt
pip install -e . -v1DenseVLM/
2├── data
3 ├── coco
4 ├── annotations
5 ├── instances_train2017.json
6 ├── panoptic_val2017.json
7 ├── panoptic_val2017/
8 ├── train2017/
9 ├── val2017/
10 ├── coco_pseudo_4764.json
11 ├── coco_proposals.json
12 ├── ADEChallengeData2016
13 ├── ade20k_panoptic_val/
14 ├── images/validation/
15 ├── ade20k_panoptic_val.json 1DenseVLM/
2├── checkpoints
3 ├── EVA02_CLIP_B_psz16_s8B.pt
4 ├── clipself_coco_6_save6_512_eva_vitl14_24layers.pt
5 ├── densevlm_coco_6_save6_512_eva_vib16_12layers.pt1model = open_clip.create_model(
2 'EVA02-CLIP-B-16', pretrained='eva', cache_dir='checkpoints/densevlm_coco_6_save6_512_eva_vib16_12layers.pt'
3)bash scripts/train_densevlm_coco_image_patches_eva_vitb16.sh 1bash scripts/test_coco_eva_vitb16_macc_boxes_masks.sh path/to/checkpoint.pt 2 densevlm_coco_test
2
3bash scripts/test_ade_eva_vitb16_macc_boxes_masks.sh path/to/checkpoint.pt 2 densevlm_ade_test1@article{li2024densevlm,
2 title={Unbiased Region-Language Alignment for Open-Vocabulary Dense Prediction},
3 author={Li, Yunheng and Li, Yuxuan and Zeng, Quansheng and Wang, Wenhai and Hou, Qibin and Cheng, Ming-Ming},
4 journal={arXiv preprint arXiv:2412.06244},
5 year={2024}
6}
7
8@InProceedings{li2024cascadeclip,
9 title={Cascade-{CLIP}: Cascaded Vision-Language Embeddings Alignment for Zero-Shot Semantic Segmentation},
10 author={Li, Yunheng and Li, Zhong-Yu and Zeng, Quan-Sheng and Hou, Qibin and Cheng, Ming-Ming},
11 booktitle={Proceedings of the 41st International Conference on Machine Learning},
12 pages={28243--28258},
13 year={2024},
14 volume={235},
15 month={21--27 Jul},
16 publisher={PMLR}
17}