ai-forever/Kandinsky-2

★ 2,812⑂ 319

Kandinsky 2 — multilingual text2image latent diffusion model

About ai-forever/Kandinsky-2

ai-forever/Kandinsky-2 is an open-source project on GitHub, mainly written in Jupyter Notebook. Kandinsky 2 — multilingual text2image latent diffusion model It currently holds 2,812 stars and 319 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 ai-forever/Kandinsky-2 · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

Kandinsky 2.2

Open In Colab — Inference example

Open In Colab — Fine-tuning with LoRA

+ Habr post + Demo fusionbrain.ai + Telegram-bot

Description:

Kandinsky 2.2 brings substantial improvements upon its predecessor, Kandinsky 2.1, by introducing a new, more powerful image encoder - CLIP-ViT-G and the ControlNet support.

The switch to CLIP-ViT-G as the image encoder significantly increases the model's capability to generate more aesthetic pictures and better understand text, thus enhancing the model's overall performance.

The addition of the ControlNet mechanism allows the model to effectively control the process of generating images. This leads to more accurate and visually appealing outputs and opens new possibilities for text-guided image manipulation.

Architecture details:

+ Text encoder (XLM-Roberta-Large-Vit-L-14) - 560M + Diffusion Image Prior — 1B + CLIP image encoder (ViT-bigG-14-laion2B-39B-b160k) - 1.8B + Latent Diffusion U-Net - 1.22B + MoVQ encoder/decoder - 67M

Сheckpoints:

+ Prior: A prior diffusion model mapping text embeddings to image embeddings + Text-to-Image / Image-to-Image: A decoding diffusion model mapping image embeddings to images + Inpainting: A decoding diffusion model mapping image embeddings and masked images to images + ControlNet-depth: A decoding diffusion model mapping image embedding and additional depth condition to images

Inference regimes

How to use:

Check our jupyter notebooks with examples in ./notebooks folder

1. text2image

from kandinsky2 import get_kandinsky2
model = get_kandinsky2('cuda', task_type='text2img', model_version='2.2')
images = model.generate_text2img(
    "red cat, 4k photo", 
    decoder_steps=50,
    batch_size=1, 
    h=1024,
    w=768,
)

Kandinsky 2.1

Framework: PyTorch Huggingface space Open In Colab

Habr post

Demo

pip install "git+https://github.com/ai-forever/Kandinsky-2.git"

Model architecture:

Kandinsky 2.1 inherits best practicies from Dall-E 2 and Latent diffusion, while introducing some new ideas.

As text and image encoder it uses CLIP model and diffusion image prior (mapping) between latent spaces of CLIP modalities. This approach increases the visual performance of the model and unveils new horizons in blending images and text-guided image manipulation.

For diffusion mapping of latent spaces we use transformer with num_layers=20, num_heads=32 and hidden_size=2048.

Other architecture parts:

+ Text encoder (XLM-Roberta-Large-Vit-L-14) - 560M + Diffusion Image Prior — 1B + CLIP image encoder (ViT-L/14) - 427M + Latent Diffusion U-Net - 1.22B + MoVQ encoder/decoder - 67M

Kandinsky 2.1 was trained on a large-scale image-text dataset LAION HighRes and fine-tuned on our internal datasets.

How to use:

Check our jupyter notebooks with examples in ./notebooks folder

1. text2image

from kandinsky2 import get_kandinsky2
model = get_kandinsky2('cuda', task_type='text2img', model_version='2.1', use_flash_attention=False)
images = model.generate_text2img(
    "red cat, 4k photo", 
    num_steps=100,
    batch_size=1, 
    guidance_scale=4,
    h=768, w=768,
    sampler='p_sampler', 
    prior_cf_scale=4,
    prior_steps="5"
)

prompt: "Einstein in space around the logarithm scheme"

2. image fuse

from kandinsky2 import get_kandinsky2
from PIL import Image
model = get_kandinsky2('cuda', task_type='text2img', model_version='2.1', use_flash_attention=False)
images_texts = ['red cat', Image.open('img1.jpg'), Image.open('img2.jpg'), 'a man']
weights = [0.25, 0.25, 0.25, 0.25]
images = model.mix_images(
    images_texts, 
    weights, 
    num_steps=150,
    batch_size=1, 
    guidance_scale=5,
    h=768, w=768,
    sampler='p_sampler', 
    prior_cf_scale=4,
    prior_steps="5"
)

3. inpainting

from kandinsky2 import get_kandinsky2
from PIL import Image
import numpy as np

model = get_kandinsky2('cuda', task_type='inpainting', model_version='2.1', use_flash_attention=False) init_image = Image.open('img.jpg') mask = np.ones((768, 768), dtype=np.float32) mask[:,:550] = 0 images = model.generate_inpainting( 'man 4k photo', init_image, mask, num_steps=150, batch_size=1, guidance_scale=5, h=768, w=768, sampler='p_sampler', prior_cf_scale=4, prior_steps="5" )

Kandinsky 2.0

Framework: PyTorch Huggingface space Open In Colab

Habr post

Demo

pip install "git+https://github.com/ai-forever/Kandinsky-2.git"

Model architecture:

It is a latent diffusion model with two multilingual text encoders:

These encoders and multilingual training datasets unveil the real multilingual text-to-image generation experience!

Kandinsky 2.0 was trained on a large 1B multilingual set, including samples that we used to train Kandinsky.

In terms of diffusion architecture Kandinsky 2.0 implements UNet with 1.2B parameters.

Kandinsky 2.0 architecture overview:

How to use:

Check our jupyter notebooks with examples in ./notebooks folder

1. text2img

from kandinsky2 import get_kandinsky2

model = get_kandinsky2('cuda', task_type='text2img') images = model.generate_text2img('A teddy bear на красной площади', batch_size=4, h=512, w=512, num_steps=75, denoised_type='dynamic_threshold', dynamic_threshold_v=99.5, sampler='ddim_sampler', ddim_eta=0.05, guidance_scale=10)

prompt: "A teddy bear на красной площади"

2. inpainting

```python from kandinsky2 import get_kandinsky2 from PIL import Image import numpy as np

model = get_kandinsky2('cuda', task_type='inpainting') init_image = Image.open('image.jpg') mask = np.ones((512, 512), dtype=np.float32) mask[100:] = 0 images = model.generate_inpainting('Девушка в красном платье', init_image, mask, num_steps=50, denoised_type='dynamic_threshold', dynamic_threshold_v=99.5, sampler='ddim_sampler', ddim_eta=0.05, guidance_scale=10)


prompt: "Девушка в красном платье"

3. img2img

python from kandinsky2 import get_kandinsky2 from PIL import Image

model = get_kandinsky2('cuda', task_type='img2img') init_image = Image.open('image.jpg') images = model.generate_img2img('кошка', init_image, strength=0.8, num_steps=50, denoised_type='dynamic_threshold', dynamic_threshold_v=99.5, sampler='ddim_sampler', ddim_eta=0.05, guidance_scale=10) ```

Authors

+ Arseniy Shakhmatov: Github, Blog + Anton Razzhigaev: Github, Blog + Aleksandr Nikolich: Github, Blog + Vladimir Arkhipkin: Github + Igor Pavlov: Github + Andrey Kuznetsov: Github + Denis Dimitrov: Github

GitHub Stars & Activity

2,812Stars
319Forks
0Open issues
Jupyter NotebookLanguage

GitHub Popularity

GitHub stars2,812
Forks319
Open issues0
Primary languageJupyter Notebook
License-
Stars gained today0
Created-
Last pushed-

Trending History

Trending statusnot on today's boards

Related AI Projects

1

spmallick / learnopencv

Jupyter Notebook★ 23,157⑂ 11,658
2

NVIDIA / DeepLearningExamples

Jupyter Notebook★ 14,847⑂ 3,407
3

advimman / lama

Jupyter Notebook★ 10,268⑂ 1,081
4

microsoft / computervision-recipes

Jupyter Notebook★ 9,887⑂ 1,205
5

XavierXiao / Dreambooth-Stable-Diffusion

Jupyter Notebook★ 7,732⑂ 795
6

open-mmlab / mmagic

Jupyter Notebook★ 7,466⑂ 1,097
7

YangLing0818 / RPG-DiffusionMaster

Jupyter Notebook★ 1,844⑂ 100
8

ai-forever / ru-dalle

Jupyter Notebook★ 1,642⑂ 242

More AI Rankings