An Image is Worth One Word: Personalizing Text-to-Image Generation using Textual Inversion
Task: Text2Image
Text-to-image models offer unprecedented freedom to guide creation through natural language. Yet, it is unclear how such freedom can be exercised to generate images of specific unique concepts, modify their appearance, or compose them in new roles and novel scenes. In other words, we ask: how can we use language-guided models to turn our cat into a painting, or imagine a new product based on our favorite toy? Here we present a simple approach that allows such creative freedom. Using only 3-5 images of a user-provided concept, like an object or a style, we learn to represent it through new "words" in the embedding space of a frozen text-to-image model. These "words" can be composed into natural language sentences, guiding personalized creation in an intuitive way. Notably, we find evidence that a single word embedding is sufficient for capturing unique and varied concepts. We compare our approach to a wide range of baselines, and demonstrate that it can more faithfully portray the concepts across a range of applications and tasks.
Model | Dataset | Download |
---|---|---|
Textual Inversion | - | - |
The file structure will be like this:
data
└── cat_toy
├── 1.jpeg
├── 2.jpeg
├── 3.jpeg
├── 3.jpeg
├── 4.jpeg
├── 6.jpeg
└── 7.jpeg
└── imagenet_templates_small.txt
└── imagenet_style_templates_small.txt
- Start training with the following command:
bash tools/dist_train.sh configs/textual_inversion/textual_inversion.py 1
- Inference with trained textual embedding:
import torch
from mmengine import Config
from mmagic.registry import MODELS
from mmagic.utils import register_all_modules
register_all_modules()
def process_state_dict(state_dict):
new_state_dict = dict()
for k, v in state_dict.items():
new_k = k.replace('module.', '')
new_state_dict[new_k] = v
return new_state_dict
cfg = Config.fromfile('configs/textual_inversion/textual_inversion.py')
checkpoint = torch.load('work_dirs/textual_inversion/iter_3000.pth')
state_dict = process_state_dict(checkpoint['state_dict'])
model = MODELS.build(cfg.model)
model.load_state_dict(state_dict)
model = model.cuda()
with torch.no_grad():
sample = model.infer('a <cat-toy> bag')['samples'][0]
sample.save('cat-toy-bag.png')
Our codebase for the stable diffusion models builds heavily on diffusers codebase and the model weights are from stable-diffusion-1.5.
Thanks for the efforts of the community!
@misc{gal2022textual,
doi = {10.48550/ARXIV.2208.01618},
url = {https://arxiv.org/abs/2208.01618},
author = {Gal, Rinon and Alaluf, Yuval and Atzmon, Yuval and Patashnik, Or and Bermano, Amit H. and Chechik, Gal and Cohen-Or, Daniel},
title = {An Image is Worth One Word: Personalizing Text-to-Image Generation using Textual Inversion},
publisher = {arXiv},
year = {2022},
primaryClass={cs.CV}
}