NguyenDinhHieu/EquiFashionModel
Text-to-Image • Updated • 5
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.
EquiFashion-DB (Mini) is a compact subset of EquiFashion-DB with aligned multimodal signals for controllable fashion generation: **image, text, pose, **.
Full Dataset Public at: https://drive.google.com/file/d/13TS1U0IY8oG1gjMvsGCQCXrxLxm2SH-Z/view?usp=drive_link
EquiFashion_DB/)
EquiFashion_DB/
├── train/ # training images
├── test/ # test images
├── train_pose/ # pose assets (json/ + pose/ visualizations)
├── train.json # train captions (list of {gt, caption})
├── test.json # test captions (list of {gt, caption})
└── train_pose.json # train captions + pose path (list of {gt, caption, pose})
Train captions (train.json)
{ "gt": "009292_0.jpg", "caption": "Sweater, Commute, Homewear, ..." }
Train captions + pose path (train_pose.json)
{ "gt": "009292_0.jpg", "caption": "Sweater, ...", "pose": "train_pose/pose/009292_0.jpg" }
Pose keypoints JSON (train_pose/json/<gt_stem>.json)
candidate: list of ([x, y, confidence, joint_index]){
"candidate": [[282.0, 3.0, 0.54, 0.0], [247.0, 58.0, 0.92, 2.0]]
}
train/<gt> and test/<gt>train.json, test.json (captions)train_pose/json/*.json (keypoints) and train_pose/pose/*.jpg (visualization)train_sketch/<gt_stem>.pngtrain_fabric/<gt_stem>.png (fixed-size texture patch)The mini version follows the EquiFashion-DB construction pipeline:
equifashion_pipeline/ code:train.json, test.json, train_pose.json) store standardized paths and captions, with all modalities aligned by filename stem.from datasets import load_dataset
ds = load_dataset("NguyenDinhHieu/EquiFashion-DB")
@dataset{NguyenDinhHieu_EquiFashionDBMini,
title={EquiFashion: Hybrid GAN–Diffusion Balancing Diversity–Fidelity for Fashion Design Generation},
author={Nguyen Dinh Hieu and Tran Minh Khuong and Phan Duy Hung},
booktitle={Pacific-Asia Conference on Knowledge Discovery and Data Mining},
year={2026},
organization={FPT University, VietNam / Quantum AI & Cyber Security Institute, FPT Corporation, Vietnam},
url = {https://huggingface.co/datasets/NguyenDinhHieu/EquiFashion-DB}
}