| --- |
| tags: |
| - open-vocabulary |
| - dense-prediction |
| - clip |
| - cvpr-2025 |
| - tpami |
| pretty_name: DeCLIP TPAMI Release |
| --- |
| |
| # DeCLIP: Decoupled Learning for Open-Vocabulary Dense Perception |
|
|
| This is the **primary asset mirror** for the TPAMI release of **DeCLIP** (CVPR 2025 accepted). It hosts training checkpoints, pretrained backbones, a full source-code mirror, and analysis scripts. |
|
|
| - π **Paper**: DeCLIP (CVPR 2025) |
| - π» **Code (canonical)**: [github.com/xiaomoguhz/DeCLIP_private](https://github.com/xiaomoguhz/DeCLIP_private) β training/evaluation scripts and setup instructions live there |
| - π€ **Sibling HF repos**: see [Repository Family](#repository-family) below |
|
|
| ## What's in this repo |
|
|
| The directory layout on HuggingFace mirrors the [code repository](https://github.com/xiaomoguhz/DeCLIP_private) one-to-one: |
|
|
| ``` |
| DeCLIP-TPAMI/ |
| βββ src/ # source code mirror: training/, open_clip/, diffusion_model/, segment_anything/ |
| βββ scripts/ # training and evaluation scripts |
| βββ tools/ # text embeddings, KNN, segmentation utilities |
| βββ metadata/ # precomputed text embeddings (.npy) |
| βββ third_party/ # ODISE, Mask2Former, TinyCLIP |
| βββ downstream/ # CLIPSelf (F-ViT), ProxyCLIP_TPAMI, SegEarth-OV, mmsegmentation |
| βββ analysis/ # visualization, failure cases, robustness, decoupling analysis, ... |
| βββ deployment/ # TensorRT inference and quantization |
| βββ experimental/ # CSAUpsampler, SimFeatUp, environment setup |
| βββ demo_images/ |
| β |
| βββ checkpoints/ # Pretrained EVA-CLIP backbones |
| β βββ EVA02_CLIP_B_psz16_s8B.pt (300 MB) |
| β βββ EVA02_CLIP_L_336_psz14_s6B.pt (856 MB) |
| β |
| βββ logs/ # All training runs with trained DeCLIP / DeCLIP+ / Integrated / Ablation checkpoints |
| βββ DeCLIP_EVA-B_DINOv2-B_560/checkpoints/ |
| βββ declip_plus_seg/epoch_6.pt |
| βββ Integrated_EVA-B_DINOv2-B_560_2loss/checkpoints/ |
| βββ Integrated_EVA-B_DINOv2-B_560_3loss/checkpoints/ |
| βββ Integrated_EVA-L_DINOv2-L_336/checkpoints/ |
| βββ Ablation_JEPA-GSC_EVA-B_DINOv2-B_csa_560/checkpoints/ |
| βββ Ablation_JEPA-GSC_EVA-L_DINOv2-B_csa_336/checkpoints/ |
| βββ Ablation_SAM-GSC_EVA-B_DINOv2-B_csa_560/checkpoints/ |
| βββ Ablation_SAM-GSC_EVA-L_DINOv2-B_csa_560/checkpoints/ |
| ``` |
|
|
| ## Usage |
|
|
| ```bash |
| # Download the entire tree (~65 GB) |
| huggingface-cli download xiaomoguhzz/DeCLIP-TPAMI \ |
| --repo-type dataset --local-dir ./DeCLIP_TPAMI |
| |
| # Download only one training run |
| huggingface-cli download xiaomoguhzz/DeCLIP-TPAMI --repo-type dataset \ |
| --include "logs/DeCLIP_EVA-B_DINOv2-B_560/checkpoints/*" \ |
| --local-dir ./DeCLIP_TPAMI |
| |
| # Download only the pretrained EVA-CLIP backbones |
| huggingface-cli download xiaomoguhzz/DeCLIP-TPAMI --repo-type dataset \ |
| --include "checkpoints/EVA02*" \ |
| --local-dir ./DeCLIP_TPAMI |
| ``` |
|
|
| For full training and evaluation instructions, please refer to the [code repository README](https://github.com/xiaomoguhz/DeCLIP_private). |
|
|
| ## Repository Family |
|
|
| This repo is the canonical release, but three earlier sibling repos preserve separable concerns from the project timeline. Together they form the complete TPAMI release: |
|
|
| | HF Repo | Type | Role | Created | |
| |---------|------|------|---------| |
| | **`xiaomoguhzz/DeCLIP-TPAMI`** (this repo) | dataset | Source code mirror, training logs, analysis scripts | 2026-04 | |
| | [`xiaomoguhzz/DeCLIP-TPAMI-data-2026-01`](https://huggingface.co/datasets/xiaomoguhzz/DeCLIP-TPAMI-data-2026-01) | dataset | COCO / LVIS / RefCOCO annotation bundles | 2026-01 | |
| | [`xiaomoguhzz/DeCLIP-TPAMI-weights-2026-01`](https://huggingface.co/xiaomoguhzz/DeCLIP-TPAMI-weights-2026-01) | model | F-ViT OV-COCO/LVIS detectors + SAM / TinyCLIP / CLIPSelf baselines | 2026-01 | |
| | [`xiaomoguhzz/DeCLIP-TPAMI-extras-2026-02`](https://huggingface.co/datasets/xiaomoguhzz/DeCLIP-TPAMI-extras-2026-02) | dataset | Archived analysis outputs and visualization packs | 2026-02 | |
|
|
| Ten legacy per-run model repos from mid-2025 are also retained for provenance β see the [code repository README](https://github.com/xiaomoguhz/DeCLIP_private#legacy-per-run-model-repos) for the full list. They do not correspond to the numbers reported in the paper; always use `DeCLIP-TPAMI` for the canonical release. |
|
|
| ## Acknowledgement |
|
|
| DeCLIP builds upon [CLIPSelf](https://github.com/wusize/CLIPSelf), [ClearCLIP](https://github.com/mc-lan/ClearCLIP), [CAT-Seg](https://github.com/cvlab-kaist/CAT-Seg), [EVA-CLIP](https://github.com/baaivision/EVA/tree/master/EVA-CLIP), and [OpenCLIP](https://github.com/mlfoundations/open_clip). |
|
|
| ## Citation |
|
|
| ```bibtex |
| @article{declip2025, |
| title = {DeCLIP: Decoupled Learning for Open-Vocabulary Dense Perception}, |
| author = {...}, |
| journal = {IEEE TPAMI (accepted)}, |
| year = {2025} |
| } |
| ``` |
|
|