radames commited on
Commit
259667b
·
1 Parent(s): da1edac
Files changed (1) hide show
  1. README.md +25 -254
README.md CHANGED
@@ -1,255 +1,26 @@
1
- # Text2Human - Official PyTorch Implementation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- <!-- <img src="./doc_images/overview.jpg" width="96%" height="96%"> -->
4
-
5
- This repository provides the official PyTorch implementation for the following paper:
6
-
7
- **Text2Human: Text-Driven Controllable Human Image Generation**</br>
8
- [Yuming Jiang](https://yumingj.github.io/), [Shuai Yang](https://williamyang1991.github.io/), [Haonan Qiu](http://haonanqiu.com/), [Wayne Wu](https://dblp.org/pid/50/8731.html), [Chen Change Loy](https://www.mmlab-ntu.com/person/ccloy/) and [Ziwei Liu](https://liuziwei7.github.io/)</br>
9
- In ACM Transactions on Graphics (Proceedings of SIGGRAPH), 2022.
10
-
11
- From [MMLab@NTU](https://www.mmlab-ntu.com/index.html) affliated with S-Lab, Nanyang Technological University and SenseTime Research.
12
-
13
- <table>
14
- <tr>
15
- <td><img src="assets/1.png" width="100%"/></td>
16
- <td><img src="assets/2.png" width="100%"/></td>
17
- <td><img src="assets/3.png" width="100%"/></td>
18
- <td><img src="assets/4.png" width="100%"/></td>
19
- </tr>
20
- <tr>
21
- <td align='center' width='24%'>The lady wears a short-sleeve T-shirt with pure color pattern, and a short and denim skirt.</td>
22
- <td align='center' width='24%'>The man wears a long and floral shirt, and long pants with the pure color pattern.</td>
23
- <td align='center' width='24%'>A lady is wearing a sleeveless pure-color shirt and long jeans</td>
24
- <td align='center' width='24%'>The man wears a short-sleeve T-shirt with the pure color pattern and a short pants with the pure color pattern.</td>
25
- <tr>
26
- </table>
27
-
28
- [**[Project Page]**](https://yumingj.github.io/projects/Text2Human.html) | [**[Paper]**](https://arxiv.org/pdf/2205.15996.pdf) | [**[Dataset]**](https://github.com/yumingj/DeepFashion-MultiModal) | [**[Demo Video]**](https://youtu.be/yKh4VORA_E0)
29
-
30
-
31
- ## Updates
32
-
33
- - [05/2022] Paper and demo video are released.
34
- - [05/2022] Code is released.
35
- - [05/2022] This website is created.
36
-
37
- ## Installation
38
- **Clone this repo:**
39
- ```bash
40
- git clone https://github.com/yumingj/Text2Human.git
41
- cd Text2Human
42
- ```
43
- **Dependencies:**
44
-
45
- All dependencies for defining the environment are provided in `environment/text2human_env.yaml`.
46
- We recommend using [Anaconda](https://docs.anaconda.com/anaconda/install/) to manage the python environment:
47
- ```bash
48
- conda env create -f ./environment/text2human_env.yaml
49
- conda activate text2human
50
- conda install -c huggingface tokenizers=0.9.4
51
- conda install -c huggingface transformers=4.0.0
52
- conda install -c conda-forge sentence-transformers=2.0.0
53
- ```
54
-
55
- If it doesn't work, you may need to install the following packages on your own:
56
- - Python 3.6
57
- - PyTorch 1.7.1
58
- - CUDA 10.1
59
- - [sentence-transformers](https://huggingface.co/sentence-transformers) 2.0.0
60
- - [tokenizers](https://pypi.org/project/tokenizers/) 0.9.4
61
- - [transformers](https://huggingface.co/docs/transformers/installation) 4.0.0
62
-
63
- ## (1) Dataset Preparation
64
-
65
- In this work, we contribute a large-scale high-quality dataset with rich multi-modal annotations named [DeepFashion-MultiModal](https://github.com/yumingj/DeepFashion-MultiModal) Dataset.
66
- Here we pre-processed the raw annotations of the original dataset for the task of text-driven controllable human image generation. The pre-processing pipeline consists of:
67
- - align the human body in the center of the images according to the human pose
68
- - fuse the clothing color and clothing fabric annotations into one texture annotation
69
- - do some annotation cleaning and image filtering
70
- - split the whole dataset into the training set and testing set
71
-
72
- You can download our processed dataset from this [Google Drive](https://drive.google.com/file/d/1KIoFfRZNQVn6RV_wTxG2wZmY8f2T_84B/view?usp=sharing). If you want to access the raw annotations, please refer to the [DeepFashion-MultiModal](https://github.com/yumingj/DeepFashion-MultiModal) Dataset.
73
-
74
- After downloading the dataset, unzip the file and put them under the dataset folder with the following structure:
75
- ```
76
- ./datasets
77
- ├── train_images
78
- ├── xxx.png
79
- ...
80
- ├── xxx.png
81
- └── xxx.png
82
- ├── test_images
83
- % the same structure as in train_images
84
- ├── densepose
85
- % the same structure as in train_images
86
- ├── segm
87
- % the same structure as in train_images
88
- ├── shape_ann
89
- ├── test_ann_file.txt
90
- ├── train_ann_file.txt
91
- └── val_ann_file.txt
92
- └── texture_ann
93
- ├── test
94
- ├── lower_fused.txt
95
- ├── outer_fused.txt
96
- └── upper_fused.txt
97
- ├── train
98
- % the same files as in test
99
- └── val
100
- % the same files as in test
101
- ```
102
-
103
- ## (2) Sampling
104
-
105
- ### Inference Notebook
106
- <img src="https://colab.research.google.com/assets/colab-badge.svg" height=22.5></a></br>
107
- Coming soon.
108
-
109
-
110
- ### Pretrained Models
111
-
112
- Pretrained models can be downloaded from this [Google Drive](https://drive.google.com/file/d/1VyI8_AbPwAUaZJPaPba8zxsFIWumlDen/view?usp=sharing). Unzip the file and put them under the dataset folder with the following structure:
113
- ```
114
- pretrained_models
115
- ├── index_pred_net.pth
116
- ├── parsing_gen.pth
117
- ├── parsing_token.pth
118
- ├── sampler.pth
119
- ├── vqvae_bottom.pth
120
- └── vqvae_top.pth
121
- ```
122
-
123
- ### Generation from Paring Maps
124
- You can generate images from given parsing maps and pre-defined texture annotations:
125
- ```python
126
- python sample_from_parsing.py -opt ./configs/sample_from_parsing.yml
127
- ```
128
- The results are saved in the folder `./results/sampling_from_parsing`.
129
-
130
- ### Generation from Poses
131
- You can generate images from given human poses and pre-defined clothing shape and texture annotations:
132
- ```python
133
- python sample_from_pose.py -opt ./configs/sample_from_pose.yml
134
- ```
135
-
136
- **Remarks**: The above two scripts generate images without language interactions. If you want to generate images using texts, you can use the notebook or our user interface.
137
-
138
- ### User Interface
139
-
140
- ```python
141
- python ui_demo.py
142
- ```
143
- <img src="./assets/ui.png" width="100%">
144
-
145
- The descriptions for shapes should follow the following format:
146
- ```
147
- <gender>, <sleeve length>, <length of lower clothing>, <outer clothing type>, <other accessories1>, ...
148
-
149
- Note: The outer clothing type and accessories can be omitted.
150
-
151
- Examples:
152
- man, sleeveless T-shirt, long pants
153
- woman, short-sleeve T-shirt, short jeans
154
- ```
155
-
156
- The descriptions for textures should follow the following format:
157
- ```
158
- <upper clothing texture>, <lower clothing texture>, <outer clothing texture>
159
-
160
- Note: Currently, we only support 5 types of textures, i.e., pure color, stripe/spline, plaid/lattice,
161
- floral, denim. Your inputs should be restricted to these textures.
162
- ```
163
-
164
- ## (3) Training Text2Human
165
-
166
- ### Stage I: Pose to Parsing
167
- Train the parsing generation network. If you want to skip the training of this network, you can download our pretrained model from [here](https://drive.google.com/file/d/1MNyFLGqIQcOMg_HhgwCmKqdwfQSjeg_6/view?usp=sharing).
168
- ```python
169
- python train_parsing_gen.py -opt ./configs/parsing_gen.yml
170
- ```
171
-
172
- ### Stage II: Parsing to Human
173
-
174
- **Step 1: Train the top level of the hierarchical VQVAE.**
175
- We provide our pretrained model [here](https://drive.google.com/file/d/1TwypUg85gPFJtMwBLUjVS66FKR3oaTz8/view?usp=sharing). This model is trained by:
176
- ```python
177
- python train_vqvae.py -opt ./configs/vqvae_top.yml
178
- ```
179
-
180
- **Step 2: Train the bottom level of the hierarchical VQVAE.**
181
- We provide our pretrained model [here](https://drive.google.com/file/d/15hzbY-RG-ILgzUqqGC0qMzlS4OayPdRH/view?usp=sharing). This model is trained by:
182
- ```python
183
- python train_vqvae.py -opt ./configs/vqvae_bottom.yml
184
- ```
185
-
186
- **Stage 3 & 4: Train the sampler with mixture-of-experts.** To train the sampler, we first need to train a model to tokenize the parsing maps. You can access our pretrained parsing maps [here](https://drive.google.com/file/d/1GLHoOeCP6sMao1-R63ahJMJF7-J00uir/view?usp=sharing).
187
- ```python
188
- python train_parsing_token.py -opt ./configs/parsing_token.yml
189
- ```
190
-
191
- With the parsing tokenization model, the sampler is trained by:
192
- ```python
193
- python train_sampler.py -opt ./configs/sampler.yml
194
- ```
195
- Our pretrained sampler is provided [here](https://drive.google.com/file/d/1OQO_kG2fK7eKiG1VJH1OL782X71UQAmS/view?usp=sharing).
196
-
197
- **Stage 5: Train the index prediction network.**
198
- We provide our pretrained index prediction network [here](https://drive.google.com/file/d/1rqhkQD-JGd7YBeIfDvMV-vjfbNHpIhYm/view?usp=sharing). It is trained by:
199
- ```python
200
- python train_index_prediction.py -opt ./configs/index_pred_net.yml
201
- ```
202
-
203
-
204
- **Remarks**: In the config files, we use the path to our models as the required pretrained models. If you want to train the models from scratch, please replace the path to your own one. We set the numbers of the training epochs as large numbers and you can choose the best epoch for each model. For your reference, our pretrained parsing generation network is trained for 50 epochs, top-level VQVAE is trained for 135 epochs, bottom-level VQVAE is trained for 70 epochs, parsing tokenization network is trained for 20 epochs, sampler is trained for 95 epochs, and the index prediction network is trained for 70 epochs.
205
-
206
- ## (4) Results
207
-
208
- Please visit our [Project Page](https://yumingj.github.io/projects/Text2Human.html#results) to view more results.</br>
209
- You can select the attribtues to customize the desired human images.
210
- [<img src="./assets/results.png" width="90%">
211
- ](https://yumingj.github.io/projects/Text2Human.html#results)
212
-
213
- ## DeepFashion-MultiModal Dataset
214
-
215
- <img src="./assets/dataset_logo.png" width="90%">
216
-
217
- In this work, we also propose **DeepFashion-MultiModal**, a large-scale high-quality human dataset with rich multi-modal annotations. It has the following properties:
218
- 1. It contains 44,096 high-resolution human images, including 12,701 full body human images.
219
- 2. For each full body images, we **manually annotate** the human parsing labels of 24 classes.
220
- 3. For each full body images, we **manually annotate** the keypoints.
221
- 4. We extract DensePose for each human image.
222
- 5. Each image is **manually annotated** with attributes for both clothes shapes and textures.
223
- 6. We provide a textual description for each image.
224
-
225
- <img src="./assets/dataset_overview.png" width="100%">
226
-
227
- Please refer to [this repo](https://github.com/yumingj/DeepFashion-MultiModal) for more details about our proposed dataset.
228
-
229
- ## TODO List
230
-
231
- - [ ] Release 1024x512 version of Text2Human.
232
- - [ ] Train the Text2Human using [SHHQ dataset](https://stylegan-human.github.io/).
233
-
234
- ## Citation
235
-
236
- If you find this work useful for your research, please consider citing our paper:
237
-
238
- ```bibtex
239
- @article{jiang2022text2human,
240
- title={Text2Human: Text-Driven Controllable Human Image Generation},
241
- author={Jiang, Yuming and Yang, Shuai and Qiu, Haonan and Wu, Wayne and Loy, Chen Change and Liu, Ziwei},
242
- journal={ACM Transactions on Graphics (TOG)},
243
- volume={41},
244
- number={4},
245
- articleno={162},
246
- pages={1--11},
247
- year={2022},
248
- publisher={ACM New York, NY, USA},
249
- doi={10.1145/3528223.3530104},
250
- }
251
- ```
252
-
253
- ## Acknowledgments
254
-
255
- Part of the code is borrowed from [unleashing-transformers](https://github.com/samb-t/unleashing-transformers), [taming-transformers](https://github.com/CompVis/taming-transformers) and [mmsegmentation](https://github.com/open-mmlab/mmsegmentation).
 
1
+ ---
2
+ title: Text2Human
3
+ emoji: 🏃
4
+ colorFrom: purple
5
+ colorTo: gray
6
+ sdk: gradio
7
+ sdk_version: 3.0.17
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
+
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces#reference
13
+
14
+ ---
15
+ title: Text2Human
16
+ emoji: 🏃
17
+ colorFrom: purple
18
+ colorTo: gray
19
+ sdk: gradio
20
+ sdk_version: 3.0.17
21
+ app_file: app.py
22
+ pinned: false
23
+ ---
24
+
25
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces#reference
26