HelloMeme: Integrating Spatial Knitting Attentions to Embed High-Level and Fidelity-Rich Conditions in Diffusion Models
- β
ExperimentsOnSKAttentionsfor ablation experiments. - β
12/13/2024Rewrite the code for the Gradio app. - β
12/12/2024Added HelloMeme V2 (synchronize code from theComfyUIrepo). - β
11/14/2024Added theHMControlNet2module - β
11/12/2024Added a newly fine-tuned version ofAnimatediffwith a patch size of 12, which uses less VRAM (Tested on 2080Ti). - β
11/5/2024ComfyUIinterface for HelloMeme. - β
11/1/2024Release the code for the core functionalities..
This repository contains the official code implementation of the paper HelloMeme. Any updates related to the code or models from the paper will be posted here. The code for the ablation experiments discussed in the paper will be added to the ExperimentsOnSKAttentions section. Additionally, we plan to release a ComfyUI interface for HelloMeme, with updates posted here as well.
conda create -n hellomeme python=3.10.11
conda activate hellomemeTo install the latest version of PyTorch, please refer to the official PyTorch website for detailed installation instructions. Additionally, the code will invoke the system's ffmpeg command for video and audio editing, so the runtime environment must have ffmpeg pre-installed. For installation guidance, please refer to the official FFmpeg website.
pip install diffusers transformers einops scipy opencv-python tqdm pillow onnxruntime onnx safetensors accelerate peftImportant
Note the version of diffusers required: frequent updates to diffusers may lead to dependency conflicts. We will periodically check the repoβs compatibility with the latest diffusers version. The currently tested and supported version is diffusers==0.31.0.
git clone https://github.com/HelloVision/HelloMeme
cd HelloMemepython inference_image.py # for image generation
python inference_video.py # for video generationWe recommend setting up the environment with conda.
pip install gradio
pip install imageio[ffmpeg]
run python app.pyAfter run the app, all models will be downloaded. Longer the driver video, more VRAM will need.
The input for the image generation script inference_image.py consists of a reference image and a drive image, as shown in the figure below:
Reference Image |
Drive Image |
The output of the image generation script is shown below:
Based on SD1.5 |
Based on disneyPixarCartoon |
The input for the video generation script inference_video.py consists of a reference image and a drive video, as shown in the figure below:
Reference Image |
Drive Video |
The output of the video generation script is shown below:
Based on epicrealism |
Based on disneyPixarCartoon |
Note
If the face in the driving video has significant movement (such as evident camera motion), it is recommended to set the trans_ratio parameter to 0 to prevent distorted outputs.
inference_video(engines, ref_img_path, drive_video_path, save_path, trans_ratio=0.0)
Our models are all hosted on π€, and the startup script will download them automatically. The specific model information is as follows:
Our pipeline also supports loading stylized base models (safetensors). For video generation tasks, using some customized models for portrait generation, such as Realistic Vision V6.0 B1, can produce better results. You can download checkpoints and loras into the directories pretrained_models/ and pretrained_models/loras/, respectively.
Thanks to π€ for providing diffusers, which has greatly enhanced development efficiency in diffusion-related work. We also drew considerable inspiration from MagicAnimate and EMO, and Animatediff allowed us to implement the video version at a very low cost. Finally, we thank our colleagues Shengjie Wu and Zemin An, whose foundational modules played a significant role in this work.
@misc{zhang2024hellomemeintegratingspatialknitting,
title={HelloMeme: Integrating Spatial Knitting Attentions to Embed High-Level and Fidelity-Rich Conditions in Diffusion Models},
author={Shengkai Zhang and Nianhong Jiao and Tian Li and Chaojie Yang and Chenhui Xue and Boya Niu and Jun Gao},
year={2024},
eprint={2410.22901},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2410.22901},
}Shengkai Zhang ([email protected])








