nielsr HF Staff commited on
Commit
eb7cabe
·
verified ·
1 Parent(s): bb54763

Add pipeline tag and improve model card

Browse files

Hi! I'm Niels, part of the community science team at Hugging Face.

This PR improves the model card by adding the `pipeline_tag: image-segmentation` to the metadata, which helps users discover the model. I've also updated the README to include a structured summary of the paper and links to the official code repository.

Files changed (1) hide show
  1. README.md +24 -4
README.md CHANGED
@@ -1,12 +1,32 @@
1
  ---
2
  license: apache-2.0
 
3
  ---
4
 
 
 
5
  This model corresponds to the **VQ-Seg training setup on the ACDC dataset**.
6
 
7
- The model is introduced and evaluated in the following paper:
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
- **VQ-Seg: Vector-Quantized Token Perturbation for Semi-Supervised Medical Image Segmentation**
10
- arXiv: https://arxiv.org/abs/2601.10124
11
 
12
- Check: https://github.com/script-Yang/VQ-Seg
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ pipeline_tag: image-segmentation
4
  ---
5
 
6
+ # VQ-Seg: Vector-Quantized Token Perturbation for Semi-Supervised Medical Image Segmentation
7
+
8
  This model corresponds to the **VQ-Seg training setup on the ACDC dataset**.
9
 
10
+ VQ-Seg is the first approach to employ vector quantization (VQ) to discretize the feature space in semi-supervised medical image segmentation. It introduces a controllable Quantized Perturbation Module (QPM) that replaces traditional dropout, enabling effective regularization by shuffling spatial locations of codebook indices.
11
+
12
+ - **Paper:** [VQ-Seg: Vector-Quantized Token Perturbation for Semi-Supervised Medical Image Segmentation](https://arxiv.org/abs/2601.10124)
13
+ - **Code:** [GitHub - script-Yang/VQ-Seg](https://github.com/script-Yang/VQ-Seg)
14
+ - **Dataset (ACDC-PNG):** [Hugging Face Datasets](https://huggingface.co/datasets/yscript/ACDC-PNG)
15
+
16
+ ## Key Features
17
+
18
+ - **Quantized Perturbation Module (QPM):** Replaces dropout with a mechanism that shuffles spatial locations of codebook indices for better regularization.
19
+ - **Dual-branch Architecture:** Shares the post-quantization feature space between image reconstruction and segmentation tasks to mitigate information loss.
20
+ - **Post-VQ Feature Adapter (PFA):** Incorporates guidance from a foundation model (DINOv2) to supplement high-level semantic information.
21
+
22
+ ## Citation
23
 
24
+ If you find this work useful in your research, please consider citing:
 
25
 
26
+ ```bibtex
27
+ @inproceedings{yangvq,
28
+ title={VQ-Seg: Vector-Quantized Token Perturbation for Semi-Supervised Medical Image Segmentation},
29
+ author={Yang, Sicheng and Xing, Zhaohu and Zhu, Lei},
30
+ booktitle={The Thirty-ninth Annual Conference on Neural Information Processing Systems}
31
+ }
32
+ ```