bytedance/InfiniteYou

โ˜… 2,683โ‘‚ 285

๐Ÿ”ฅ [ICCV 2025 Highlight] InfiniteYou: Flexible Photo Recrafting While Preserving Your Identity

About bytedance/InfiniteYou

bytedance/InfiniteYou is an open-source project on GitHub, mainly written in Python. ๐Ÿ”ฅ [ICCV 2025 Highlight] InfiniteYou: Flexible Photo Recrafting While Preserving Your Identity It currently holds 2,683 stars and 285 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

AI Homed tracks it on the AI Image Projects board and on the AI AI Image Projects list.

GitHub Repository Details

Repository bytedance/InfiniteYou ยท default branch - ยท size 0 KB ยท watchers 0 ยท source: GitHub REST API and repository README

README

InfiniteYou: Flexible Photo Recrafting While Preserving Your Identity

Liming Jiang     Qing Yan     Yumin Jia     Zichuan Liu     Hao Kang     Xin Lu
ByteDance Intelligent Creation
ICCV 2025 (Highlight)

teaser
Abstract: Achieving flexible and high-fidelity identity-preserved image generation remains formidable, particularly with advanced Diffusion Transformers (DiTs) like FLUX. We introduce InfiniteYou (InfU), one of the earliest robust frameworks leveraging DiTs for this task. InfU addresses significant issues of existing methods, such as insufficient identity similarity, poor text-image alignment, and low generation quality and aesthetics. Central to InfU is InfuseNet, a component that injects identity features into the DiT base model via residual connections, enhancing identity similarity while maintaining generation capabilities. A multi-stage training strategy, including pretraining and supervised fine-tuning (SFT) with synthetic single-person-multiple-sample (SPMS) data, further improves text-image alignment, ameliorates image quality, and alleviates face copy-pasting. Extensive experiments demonstrate that InfU achieves state-of-the-art performance, surpassing existing baselines. In addition, the plug-and-play design of InfU ensures compatibility with various existing methods, offering a valuable contribution to the broader community.

๐Ÿ”ฅ News

๐Ÿ’ก Important Usage Tips

:european_castle: Model Zoo

| InfiniteYou Version | Model Version | Base Model Trained with | Description | | :---: | :---: | :---: | :---: | | InfiniteYou-FLUX v1.0 | aes_stage2 | FLUX.1-dev | Stage-2 model after SFT. Better text-image alignment and aesthetics. | | InfiniteYou-FLUX v1.0 | sim_stage1 | FLUX.1-dev | Stage-1 model before SFT. Higher identity similarity. |

๐Ÿ”ง Requirements and Installation

Dependencies

Simply run this one-line command to install (feel free to create a python3 virtual environment before you run):

pip install -r requirements.txt

Memory Requirements

If you want to use our models but only have a GPU with even less VRAM, please further refer to Diffusers memory reduction tips, where some more aggressive strategies may be helpful. Community contributions are also welcome.

โšก๏ธ Quick Inference

Local Inference Script

python test.py --id_image ./assets/examples/man.jpg --prompt "A man, portrait, cinematic" --out_results_dir ./results
Explanation of all the arguments (click to expand!)
  • Input and output:
  • --id_image (str): The path to the input identity (ID) image. Default: ./assets/examples/man.jpg.
  • --prompt (str): The text prompt for image generation. Default: A man, portrait, cinematic.
  • --out_results_dir (str): The path to the output directory to save the generated results. Default: ./results.
  • --control_image (str or None): The path to the control image \[optional\] to extract five facical keypoints to control the generation. Default: None.
  • --base_model_path (str): The huggingface or local path to the base model. Default: black-forest-labs/FLUX.1-dev.
  • --model_dir (str): The path to the InfiniteYou model directory. Default: ByteDance/InfiniteYou.
  • Version control:
  • --infu_flux_version (str): InfiniteYou-FLUX version: currently only v1.0 is supported. Default: v1.0.
  • --model_version (str): The model variant to use: aes_stage2 | sim_stage1. Default: aes_stage2.
  • General inference arguments:
  • --cuda_device (int): The cuda device ID to use. Default: 0.
  • --seed (int): The seed for reproducibility (0 for random). Default: 0.
  • --guideance_scale (float): The guidance scale for the diffusion process. Default: 3.5.
  • --num_steps (int): The number of inference steps. Default: 30.
  • InfiniteYou-specific arguments:
  • --infusenet_conditioning_scale (float): The scale for the InfuseNet conditioning. Default: 1.0.
  • --infusenet_guidance_start (float): The start point for the InfuseNet guidance injection. Default: 0.0.
  • --infusenet_guidance_end (float): The end point for the InfuseNet guidance injection. Default: 1.0.
  • Optional LoRAs:
  • --enable_realism_lora (store_true): Whether to enable the Realism LoRA. Default: False.
  • --enable_anti_blur_lora (store_true): Whether to enable the Anti-blur LoRA. Default: False.
  • Memory reduction options:
  • --quantize_8bit (store_true): Whether to quantize the model to the 8-bit format. Default: False.
  • --cpu_offload (store_true): Whether to use fast CPU offloading. Default: False.

Local Gradio Demo

python app.py

Online Hugging Face Demo

We appreciate the GPU grant from the Hugging Face team. You can also try our InfiniteYou-FLUX Hugging Face demo online.

ComfyUI Nodes

๐Ÿ†š Comparison with State-of-the-Art Relevant Methods

comparative_results

Qualitative comparison results of InfU with the state-of-the-art baselines, FLUX.1-dev IP-Adapter and PuLID-FLUX. The identity similarity and text-image alignment of the results generated by FLUX.1-dev IP-Adapter (IPA) are inadequate. PuLID-FLUX generates images with decent identity similarity. However, it suffers from poor text-image alignment (Columns 1, 2, 4), and the image quality (e.g., bad hands in Column 5) and aesthetic appeal are degraded. In addition, the face copy-paste issue of PuLID-FLUX is evident (Column 5). In comparison, the proposed InfU outperforms the baselines across all dimensions.

โš™๏ธ Plug-and-Play Property with Off-the-Shelf Popular Approaches

plug_and_play

InfU features a desirable plug-and-play design, compatible with many existing methods. It naturally supports base model replacement with any variants of FLUX.1-dev, such as FLUX.1-schnell for more efficient generation (e.g., in 4 steps). The compatibility with ControlNets and LoRAs provides more controllability and flexibility for customized tasks. Notably, the compatibility with OminiControl extends our potential for multi-concept personalization, such as interacted identity (ID) and object personalized generation. InfU is also compatible with IP-Adapter (IPA) for stylization of personalized images, producing decent results when injecting style references via IPA. Our plug-and-play feature may extend to even more approaches, providing valuable contributions to the broader community.

๐Ÿ“œ Disclaimer and Licenses

The images used in this repository and related demos are sourced from consented subjects or generated by the models. These pictures are intended solely to showcase the capabilities of our research. If you have any concerns, please feel free to contact us, and we will promptly remove any inappropriate content.

The use of the released code, model, and demo must strictly adhere to the respective licenses. Our code is released under the Apache License 2.0, and our model is released under the Creative Commons Attribution-NonCommercial 4.0 International Public License for academic research purposes only. Any manual or automatic downloading of the face models from InsightFace, the FLUX.1-dev base model, LoRAs (Realism and Anti-blur), etc., must follow their original licenses and be used only for academic research purposes.

This research aims to positively impact the field of Generative AI. Any usage of this method must be responsible and comply with local laws. The developers do not assume any responsibility for any potential misuse.

๐Ÿค— Acknowledgments

We sincerely acknowledge the insightful discussions from Stathi Fotiadis, Min Jin Chong, Xiao Yang, Tiancheng Zhi, Jing Liu, and Xiaohui Shen. We genuinely appreciate the help from Jincheng Liang and Lu Guo with our user study and qualitative evaluation.

๐Ÿ“– Citation

If you find InfiniteYou useful for your research or applications, please cite our paper:

@inproceedings{jiang2025infiniteyou,
  title={{InfiniteYou}: Flexible Photo Recrafting While Preserving Your Identity},
  author={Jiang, Liming and Yan, Qing and Jia, Yumin and Liu, Zichuan and Kang, Hao and Lu, Xin},
  booktitle={ICCV},
  year={2025}
}

We also appreciate it if you could give a star :star: to this repository. Thanks a lot!

GitHub Stars & Activity

2,683Stars
285Forks
0Open issues
PythonLanguage

GitHub Popularity

GitHub stars2,683
Forks285
Open issues0
Primary languagePython
License-
Stars gained today0
Created-
Last pushed-

Trending History

Trending statusnot on today's boards

Related AI Projects

1

ultralytics / ultralytics

Pythonโ˜… 61,829โ‘‚ 11,787
โ†’
2

ultralytics / yolov5

Pythonโ˜… 58,057โ‘‚ 17,469
โ†’
3

roboflow / supervision

Pythonโ˜… 50,960โ‘‚ 4,848
โ†’
4

lucidrains / vit-pytorch

Pythonโ˜… 25,514โ‘‚ 3,495
โ†’
5

junyanz / pytorch-CycleGAN-and-pix2pix

Pythonโ˜… 25,244โ‘‚ 6,567
โ†’
6

graphdeco-inria / gaussian-splatting

Pythonโ˜… 23,930โ‘‚ 3,434
โ†’
7

pytorch / vision

Pythonโ˜… 17,921โ‘‚ 7,265
โ†’
8

cvat-ai / cvat

Pythonโ˜… 16,758โ‘‚ 3,871
โ†’

More AI Rankings