ComfyUI Infinite You Node
March 30, 2025 ยท View on GitHub
Implementation of ByteDance Infinite You in ComfyUI. Supports multiple faces, stacking controlNets, gaze control, pre-processor for face gaze.
You can find the official paper and code here - Infinite You
Installation
First clone the repo
cd custom_nodes
git clone https://github.com/katalist-ai/ComfyUI-InfiniteYou.git
cd ComfyUI-InfiniteYou
pip install -r requirements.txt
There are two models -
- sim - focuses more on preserving facial similarity.
- aes - focuses on aesthetical quality, composition as well.
Then download the relevant models and place it in the appropriate folders
-
Download the control net models to
\models\controlnet\ -
Download the image projection model to
\models\inf-you\ -
InsightFace model will be auto-downloaded
Examples
Note these examples are with base flux model, you can get better results by using LoRas recommended by ByteDance.
- Infinite you workflow for single person identity preservation. This works really well with ability to do different styles and so far the most flexible identity preserving research.

- Infinite you workflow with gaze control. This model also takes a control image that can be used to control gaze. This implementation includes a pre-processor to generate the control image from a image.

- Infinite you workflow with gaze control and multiple faces. This is still experimental, only way to get it working is using aes projection weights with sim infuse net weights.

Credits & Acknowledgement
This work was possible due to the open release of InfiniteYou and the strong ComfyUI community. Model weights come under Creative Commons Attribution-NonCommercial 4.0 International Public License use under your own discretion.
Special thanks to:
- ByteDance Infinite You team for this amazing work.
- Zen AI Team for uploading the weights and early implementation.