CoolFace
Datasetpublic

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.

sourceHugging Facemitupdated 26d agoView on Hugging Face
1likes51downloads
Dataset Card

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

text
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_name
  • β€”mask_file_name
  • β€”mask_rgb_file_name
  • β€”domain
  • β€”source_dataset

Load the dataset

python
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

bibtex
@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

bibtex
@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.csv is used for cleaner loading on Hugging Face.
  • β€”RGB masks are included mainly for visualization.
  • β€”This release currently contains the train split.

Acknowledgement

We thank the LoveDA authors for the original benchmark that inspired and supported this dataset.