NguyenDinhHieu/EquiFashionModel
Text-to-Image • Updated • 2
image imagewidth (px) 128 512 |
|---|
EquiFashion-DB (Mini) is a compact subset of EquiFashion-DB with aligned multimodal signals for controllable fashion generation: image, text, pose, sketch, and fabric.
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_sketch/ # extracted Canny sketch maps (PNG)
├── train_fabric/ # extracted fabric texture patches (PNG)
├── 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, Tran Minh Khuong, Phan Duy Hung},
year = {2026},
url = {https://huggingface.co/datasets/NguyenDinhHieu/EquiFashion-DB}
}