Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,60 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-segmentation
|
| 5 |
+
tags:
|
| 6 |
+
- wsss
|
| 7 |
+
- boundary-refinement
|
| 8 |
+
- priors
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
# MS COCO 2014 NAMLab Priors for HGA
|
| 12 |
+
|
| 13 |
+
This dataset repository hosts the pre-computed hierarchical invariant region partition priors for weakly supervised semantic segmentation (WSSS) on MS COCO 2014, generated using the NAMLab framework.
|
| 14 |
+
|
| 15 |
+
Due to Hugging Face's individual file size limits, the total ~63.69 GB dataset is uploaded as a **split-volume zip archive** (`priors_coco.zip.part1` to `priors_coco.zip.part3`). You must concatenate them locally before extraction.
|
| 16 |
+
|
| 17 |
+
## π Main Codebase
|
| 18 |
+
The complete implementation, environment setup, and training guidelines are available in our official GitHub repository:
|
| 19 |
+
π **[Uncertainty-42/HGA](https://github.com/Uncertainty-42/HGA)**
|
| 20 |
+
|
| 21 |
+
## π Expected Directory Layout
|
| 22 |
+
After concatenation and extraction, the folder structure should match the following layout:
|
| 23 |
+
|
| 24 |
+
```text
|
| 25 |
+
MSCOCO/
|
| 26 |
+
βββ JPEGImages/
|
| 27 |
+
β βββ train/
|
| 28 |
+
β βββ val/
|
| 29 |
+
βββ priors/
|
| 30 |
+
βββ namlab_pt/ # <- Extract here (will automatically create train/ and val/)
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
## π₯ Concatenation & Extraction Guide
|
| 34 |
+
Navigate to your local `priors/` directory where the downloaded split parts reside, and run the following commands to reconstruct and extract the dataset:
|
| 35 |
+
|
| 36 |
+
```bash
|
| 37 |
+
# Step 1: Concatenate the split parts into a single valid zip archive
|
| 38 |
+
cat priors_coco.zip.part* > priors_coco.zip
|
| 39 |
+
|
| 40 |
+
# Step 2: Extract the contents into namlab_pt/
|
| 41 |
+
unzip priors_coco.zip -d namlab_pt/
|
| 42 |
+
|
| 43 |
+
# Step 3: Clean up the temporary archive and parts (Optional)
|
| 44 |
+
rm priors_coco.zip.part* priors_coco.zip
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## π Citation & Attribution
|
| 48 |
+
If you use these priors in your research, please cite both our work and the foundational NAMLab paper:
|
| 49 |
+
|
| 50 |
+
```bibtex
|
| 51 |
+
@article{zheng2021hierarchical,
|
| 52 |
+
title={Hierarchical Image Segmentation Based on Nonsymmetry and Anti-Packing Pattern Representation Model},
|
| 53 |
+
author={Zheng, Yunping and Yang, Bowen and Sarem, Mudar},
|
| 54 |
+
journal={IEEE Transactions on Image Processing},
|
| 55 |
+
volume={30},
|
| 56 |
+
pages={2408--2421},
|
| 57 |
+
year={2021},
|
| 58 |
+
publisher={IEEE}
|
| 59 |
+
}
|
| 60 |
+
```
|