Mitigating Long-Tail Bias via Prompt-Controlled Diffusion Augmentation
Paper • 2602.04749 • Published • 1
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 failedNeed 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 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.
Train/
├── metadata.csv
├── Urban/
│ ├── image_png/
│ ├── mask_png/
│ └── mask_rgb_png/
└── Rural/
├── image_png/
├── mask_png/
└── mask_rgb_png/
Each row in Train/metadata.csv contains:
image_file_namemask_file_namemask_rgb_file_namedomainsource_datasetfrom datasets import load_dataset
ds = load_dataset("buddhi19/SyntheticGenV5")
print(ds["train"][0])
This dataset is derived based on LoveDA
LoveDA: A Remote Sensing Land-Cover Dataset for Domain Adaptive Semantic Segmentation
@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},
}
@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}
}
Train/metadata.csv is used for cleaner loading on Hugging Face.train split.We thank the LoveDA authors for the original benchmark that inspired and supported this dataset.