Skip to content

Commit 1833b76

Browse files
committed
release dataset
1 parent 085a235 commit 1833b76

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

README.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
- [x] Inference code and pretrained models.
66
- [x] Evaluation code.
77
- [ ] Training code.
8-
- [ ] Training data.
8+
- [x] Training data.
99
- [ ] New model based on [Stable Diffusion 2-1](https://huggingface.co/stabilityai/stable-diffusion-2-1).
1010

1111
## 🔥 Updates
1212

13+
[2024-05-26] Dataset is released [here](https://huggingface.co/datasets/huanngzh/DeepFashion-MultiModal-Parts2Whole). Refer to [Dataset](#-dataset).
14+
<br/>
1315
[2024-05-06] 🔥🔥🔥 Code is released. Enjoy the human parts composition!
1416

1517
## 🏠 <a href="https://huanngzh.github.io/Parts2Whole/" target="_blank">Project Page</a> | <a href="https://arxiv.org/abs/2404.15267" target="_blank">Paper</a> | <a href="https://huggingface.co/huanngzh/Parts2Whole" target="_blank">Model</a>
@@ -79,6 +81,22 @@ input_dict = {
7981

8082
🔨🔨🔨 In order to conveniently obtain the mask of each reference image, we also provide corresponding tools and explain how to use them in [Tools](#-tools). First, you can use Real-ESRGAN to increase the resolution of the reference image, and use segformer to obtain the masks of various parts of the human body.
8183

84+
## 📊 Dataset
85+
![data_sample](assets/data_sample.png)
86+
87+
Our dataset has been released [here](https://huggingface.co/datasets/huanngzh/DeepFashion-MultiModal-Parts2Whole). We provide the download and unzip script in `download_dataset.py`, please use the following command:
88+
```Bash
89+
python download_dataset.py
90+
```
91+
It will prepare the dataset in the folder `data/DeepFashion-MultiModal-Parts2Whole`, so that you can run our config to train the model or run our dataset file `parts2whole/data/ref_trg.py` to check our dataset.
92+
93+
This human image dataset comprising about 41,500 reference-target pairs. Each pair in this dataset includes multiple reference images, including pose maps, various aspects of human appearance (e.g., hair, face, clothes, shoes), and a target image featuring the same individual (ID), along with textual captions. Details about the dataset refer to [our dataset repo](https://huggingface.co/datasets/huanngzh/DeepFashion-MultiModal-Parts2Whole).
94+
95+
> Our dataset is post-processed from [DeepFashion-Multimodal dataset](https://github.com/yumingj/DeepFashion-MultiModal).
96+
97+
## 🏋️ Training
98+
99+
82100
## 😊 Evaluation
83101

84102
For evaluation, please install additional packages firstly:

assets/data_sample.png

652 KB
Loading

download_dataset.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import os
2+
import zipfile
3+
from huggingface_hub import snapshot_download
4+
5+
REPO_ID = "huanngzh/DeepFashion-MultiModal-Parts2Whole"
6+
LOCAL_DIR = "data/DeepFashion-MultiModal-Parts2Whole"
7+
8+
os.makedirs(os.path.dirname(LOCAL_DIR), exist_ok=True)
9+
snapshot_download(repo_id=REPO_ID, repo_type="dataset", local_dir=LOCAL_DIR)
10+
print(f"Downloaded {REPO_ID} to {LOCAL_DIR}")
11+
12+
# Unzip the downloaded zip files in the LOCAL_DIR
13+
print(f"Unzipping zip files in {LOCAL_DIR}...")
14+
for file in os.listdir(LOCAL_DIR):
15+
if file.endswith(".zip"):
16+
zip_path = os.path.join(LOCAL_DIR, file)
17+
with zipfile.ZipFile(zip_path, "r") as zip_ref:
18+
zip_ref.extractall(LOCAL_DIR)
19+
print(f"Unzipped {zip_path} to {os.path.splitext(zip_path)[0]}")

0 commit comments

Comments
 (0)