Dataset Viewer
The dataset viewer is not available for this dataset.
The JWT signature verification failed. Check the signing key and the algorithm.
Error code:   JWTInvalidSignature
Exception:    InvalidSignatureError
Message:      Signature verification failed
Traceback:    Traceback (most recent call last):
                File "/src/libs/libapi/src/libapi/jwt_token.py", line 286, in validate_jwt
                  decoded = jwt.decode(
                      jwt=token,
                  ...<2 lines>...
                      options=options,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 368, in decode
                  decoded = self.decode_complete(
                      jwt,
                  ...<8 lines>...
                      leeway=leeway,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 265, in decode_complete
                  decoded = self._jws.decode_complete(
                      jwt,
                  ...<3 lines>...
                      detached_payload=detached_payload,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 270, in decode_complete
                  self._verify_signature(
                  ~~~~~~~~~~~~~~~~~~~~~~^
                      signing_input,
                      ^^^^^^^^^^^^^^
                  ...<4 lines>...
                      options=merged_options,
                      ^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 417, in _verify_signature
                  raise InvalidSignatureError("Signature verification failed")
              jwt.exceptions.InvalidSignatureError: Signature verification failed

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

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_name
  • mask_file_name
  • mask_rgb_file_name
  • domain
  • source_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

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}, 
}

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}
}

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.

Downloads last month
32

Papers for buddhi19/SyntheticGenV5