ddw2AIGROUP2CQUPT commited on
Commit
7c70c19
·
verified ·
1 Parent(s): 15f565a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md CHANGED
@@ -21,9 +21,12 @@ We constructed a large-scale facial image-text dataset for facial image generati
21
 
22
  [![facecaption](assets/facecaption.png)](https://huggingface.co/datasets/OpenFace-CQUPT/FaceCaption-15M)
23
 
 
 
24
  ## Model
25
 
26
  ![Model](assets/Model.png)
 
27
 
28
  ## Results
29
  **Unsplash-Face**
@@ -45,3 +48,22 @@ We constructed a large-scale facial image-text dataset for facial image generati
45
  | InstantID.(2024) | 24.29 | 67.2 | 50.1 | 75.5 | 166.5 | 5.3 | 53.7 |
46
  | Pulid.(2024) | **29.21** | 36.2 | 13.2 | 22.8 | 298.5 | 2.1 | 43.5 |
47
  | Ours | 21.96 | **87.4** | **79.4** | **77.8** | **95.4** | **6.3** | **73.1** |
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
  [![facecaption](assets/facecaption.png)](https://huggingface.co/datasets/OpenFace-CQUPT/FaceCaption-15M)
23
 
24
+ We utilize the information of FaceCaption-15M (each image in FaceCaption-15M corresponds one image in LAIONFace) to clean the LAION-Face data efficiently. Specifically: (1) We sorted the images in FaceCaption-15M by resolution, and selected the top 10M images from LAION-Face; (2) We removed black-and-white images by checking whether the mean of the standard deviation exceeds a set threshold to ensure the selection of color images; (3) We employed an OCR text detection model to eliminate images containing a large amount of text; (4) We removed the group photos containing multiple faces by using the yolov5-face model; (5) We eliminated cartoon-style images using a cascade classifier based on LBP to detect anime-style faces within the images. Finally, we obtained a 4.2M highquality human-scene images.
25
+
26
  ## Model
27
 
28
  ![Model](assets/Model.png)
29
+ (1) the inputs of Face-MakeUp include a reference facial image, a pose map that extracted from the reference image, and text prompt; (2) facial features extraction modules, which includes general and specialized visual encoders as well as a learning module for pose map; (3) a pre-trained text-to-image diffusion model; and (4) a cross-attention module is designed to learn the joint representation of facial image (reference) and text prompts. In addition, embeddings of pose map are integrated through an additive way (b). This final embeddings are then incorporated into the feature space of the diffusion model through an overlay method, which enriches the feature space of the diffusion model with more information of the reference facial image, thereby ensuring consistency between the generated image and the reference image.
30
 
31
  ## Results
32
  **Unsplash-Face**
 
48
  | InstantID.(2024) | 24.29 | 67.2 | 50.1 | 75.5 | 166.5 | 5.3 | 53.7 |
49
  | Pulid.(2024) | **29.21** | 36.2 | 13.2 | 22.8 | 298.5 | 2.1 | 43.5 |
50
  | Ours | 21.96 | **87.4** | **79.4** | **77.8** | **95.4** | **6.3** | **73.1** |
51
+
52
+ We present the comparisons in Table. We can make the main observations as follows: (1) In terms of the realism for generated facial images (VLM-score), our proposed Face-MakeUp significantly outperforms other models, indicating that our model can generate more realistic facial images. This is also demonstrated by the examples shown in Fig. 1. (2) Regarding attribute prediction in generated facial images (Attr c), facial images generated by FaceMakeUp contain more attributes than that of others, indicating that our model is capable of generating facial images that contain more fine-grained features. (3) In terms of similarity between generated facial images and reference (CLIP-I, DINO, FaceSim, and FID), attributed to the diversified facial feature fusion mechanism, our model achieved seven first-place and one second-place performances across two test datasets. (4) In terms of image-text similarity, our model is slightly lower than other models, mainly because the image contains not only faces but also other content. We mainly focus on optimizing the face region.
53
+
54
+ ## Citation
55
+
56
+ ```
57
+ @misc{dai2025facemakeupmultimodalfacialprompts,
58
+ title={Face-MakeUp: Multimodal Facial Prompts for Text-to-Image Generation},
59
+ author={Dawei Dai and Mingming Jia and Yinxiu Zhou and Hang Xing and Chenghang Li},
60
+ year={2025},
61
+ eprint={2501.02523},
62
+ archivePrefix={arXiv},
63
+ primaryClass={cs.CV},
64
+ url={https://arxiv.org/abs/2501.02523},
65
+ }
66
+
67
+ ## contact
68
+
69
+ mailto: [S230231046@stu.cqupt.edu.cn](mailto:S230231046@stu.cqupt.edu.cn) or [dw_dai@163.com](mailto:dw_dai@163.com)