buddhi19/SyntheticGenV5
SyntheticGenV5 SyntheticGenV5 is a synthetic remote-sensing semantic segmentation dataset (from the paper https://huggingface.co/papers/2602.04749) built for UrbanβRural domain-aware learning. It keeps the original folder layout and uses Train/metadata.csv to connect each image with its semantic mask and RGB mask. Why use this dataset? π Two domains: Urban and Rural π°οΈ Designed for remote-sensing semantic segmentation π§ͺ Useful for synthetic augmentation andβ¦ See the full description on the dataset page: https://huggingface.co/datasets/buddhi19/SyntheticGenV5.
SyntheticGenV5
SyntheticGenV5 is a synthetic remote-sensing semantic segmentation dataset (from the paper https://huggingface.co/papers/2602.04749) built for UrbanβRural domain-aware learning.
It keeps the original folder layout and uses Train/metadata.csv to connect each image with its semantic mask and RGB mask.
Why use this dataset?
- π Two domains: Urban and Rural
- π°οΈ Designed for remote-sensing semantic segmentation
- π§ͺ Useful for synthetic augmentation and domain generalization
- π Includes RGB mask visualizations for easy inspection
Structure
Train/
βββ metadata.csv
βββ Urban/
β βββ image_png/
β βββ mask_png/
β βββ mask_rgb_png/
βββ Rural/
βββ image_png/
βββ mask_png/
βββ mask_rgb_png/Metadata Fields
Each row in Train/metadata.csv contains:
image_file_namemask_file_namemask_rgb_file_namedomainsource_dataset
Load the dataset
from datasets import load_dataset
ds = load_dataset("buddhi19/SyntheticGenV5")
print(ds["train"][0])Source
This dataset is derived based on LoveDA
Your downstream segmentation would work way better if you couple this dataset with original LoveDA dataset ;)
LoveDA: A Remote Sensing Land-Cover Dataset for Domain Adaptive Semantic Segmentation
Citation
SyntheticGenV5 / Associated Paper
@misc{wijenayake2026mitigating,
title={Mitigating Long-Tail Bias via Prompt-Controlled Diffusion Augmentation},
author={Buddhi Wijenayake and Nichula Wasalathilake and Roshan Godaliyadda and Vijitha Herath and Parakrama Ekanayake and Vishal M. Patel},
year={2026},
eprint={2602.04749},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2602.04749}
}LoveDA
@misc{wang2022lovedaremotesensinglandcover,
title={LoveDA: A Remote Sensing Land-Cover Dataset for Domain Adaptive Semantic Segmentation},
author={Junjue Wang and Zhuo Zheng and Ailong Ma and Xiaoyan Lu and Yanfei Zhong},
year={2022},
eprint={2110.08733},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2110.08733},
}Notes
- The original directory layout is preserved.
Train/metadata.csvis used for cleaner loading on Hugging Face.- RGB masks are included mainly for visualization.
- This release currently contains the
trainsplit.
Acknowledgement
We thank the LoveDA authors for the original benchmark that inspired and supported this dataset.
