nielsr HF Staff commited on
Commit
42d8ff8
Β·
verified Β·
1 Parent(s): ea6a2b1

Improve dataset card: Add paper, code, task category, license, and usage details

Browse files

This PR significantly enhances the dataset card for the `GTA5subset` by:
- Adding the `image-segmentation` task category to the metadata.
- Including relevant `tags` such as `domain-adaptation`, `synthetic-data`, and `zero-shot`.
- Specifying the correct license as `cc-by-nc-sa-4.0` in the metadata, consistent with the original source.
- Linking the dataset to its associated paper [Zero Shot Domain Adaptive Semantic Segmentation by Synthetic Data Generation and Progressive Adaptation](https://huggingface.co/papers/2508.03300) and including its abstract.
- Providing a link to the official GitHub code repository: [https://github.com/roujin/SDGPA](https://github.com/roujin/SDGPA).
- Adding a detailed "Dataset Structure and Usage" section, including a snippet from the GitHub README on how to organize the data for use with the paper's code.
- Including the full license details and the BibTeX citation for proper attribution.

These changes greatly improve the discoverability, context, and usability of this dataset on the Hugging Face Hub.

Files changed (1) hide show
  1. README.md +66 -2
README.md CHANGED
@@ -1,3 +1,67 @@
1
- extracted from https://download.visinf.tu-darmstadt.de/data/from_games/
 
 
 
 
 
 
 
 
2
 
3
- Liscence: https://bitbucket.org/visinf/projects-2016-playing-for-data/src/master/LICENSE.md
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - image-segmentation
4
+ license: cc-by-nc-sa-4.0
5
+ tags:
6
+ - domain-adaptation
7
+ - synthetic-data
8
+ - zero-shot
9
+ ---
10
 
11
+ # GTA5 Subset for Zero-Shot Domain Adaptive Semantic Segmentation
12
+
13
+ This repository contains a curated subset of the GTA5 dataset, specifically designed for experiments in the paper [Zero Shot Domain Adaptive Semantic Segmentation by Synthetic Data Generation and Progressive Adaptation](https://huggingface.co/papers/2508.03300). This subset includes `images` and `labels` necessary for training and evaluating models in zero-shot domain adaptive semantic segmentation scenarios.
14
+
15
+ The original GTA5 dataset was extracted from [https://download.visinf.tu-darmstadt.de/data/from_games/](https://download.visinf.tu-darmstadt.de/data/from_games/).
16
+
17
+ ## Paper
18
+ [**Zero Shot Domain Adaptive Semantic Segmentation by Synthetic Data Generation and Progressive Adaptation**](https://huggingface.co/papers/2508.03300)
19
+ *Jun Luo, Zijing Zhao, Yang Liu*
20
+
21
+ **Abstract:**
22
+ Deep learning-based semantic segmentation models achieve impressive results yet remain limited in handling distribution shifts between training and test data. In this paper, we present SDGPA (Synthetic Data Generation and Progressive Adaptation), a novel method that tackles zero-shot domain adaptive semantic segmentation, in which no target images are available, but only a text description of the target domain's style is provided. To compensate for the lack of target domain training data, we utilize a pretrained off-the-shelf text-to-image diffusion model, which generates training images by transferring source domain images to target style. Directly editing source domain images introduces noise that harms segmentation because the layout of source images cannot be precisely maintained. To address inaccurate layouts in synthetic data, we propose a method that crops the source image, edits small patches individually, and then merges them back together, which helps improve spatial precision. Recognizing the large domain gap, SDGPA constructs an augmented intermediate domain, leveraging easier adaptation subtasks to enable more stable model adaptation to the target domain. Additionally, to mitigate the impact of noise in synthetic data, we design a progressive adaptation strategy, ensuring robust learning throughout the training process. Extensive experiments demonstrate that our method achieves state-of-the-art performance in zero-shot semantic segmentation. The code is available at this https URL
23
+
24
+ ## Code
25
+
26
+ The official implementation for the paper can be found on GitHub: [https://github.com/roujin/SDGPA](https://github.com/roujin/SDGPA)
27
+
28
+ ## Dataset Structure and Usage
29
+
30
+ To use this GTA5 subset with the official SDGPA codebase, you should organize your datasets under a common data root (e.g., `<data_root>`). This dataset specifically forms the `GTA5` folder within that structure.
31
+
32
+ An example of the required folder organization:
33
+
34
+ ```
35
+ <data_root>
36
+ └─ ACDC
37
+ └─ gt
38
+ └─ rgb_anon
39
+ └─ cityscapes
40
+ └─ gtFine
41
+ └─ leftImg8bit
42
+ └─ GTA5
43
+ └─ images
44
+ └─ labels
45
+ ```
46
+
47
+ For more details on installation and running experiments, please refer to the [GitHub repository](https://github.com/roujin/SDGPA).
48
+
49
+ ## License
50
+
51
+ This dataset is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0). More details can be found at: [https://bitbucket.org/visinf/projects-2016-playing-for-data/src/master/LICENSE.md](https://bitbucket.org/visinf/projects-2016-playing-for-data/src/master/LICENSE.md)
52
+
53
+ ## Citation
54
+
55
+ If you use this dataset in your research, please cite the associated paper:
56
+
57
+ ```bibtex
58
+ @misc{luo2025sdgpa,
59
+ title={Zero Shot Domain Adaptive Semantic Segmentation by Synthetic Data Generation and Progressive Adaptation},
60
+ author={Jun Luo and Zijing Zhao and Yang Liu},
61
+ year={2025},
62
+ eprint={2508.03300},
63
+ archivePrefix={arXiv},
64
+ primaryClass={cs.CV},
65
+ url={https://arxiv.org/abs/2508.03300},
66
+ }
67
+ ```