Views
No views yet


diffusers from main as well as Transformers, Acceleratepip install git+https://github.com/huggingface/diffusers.git
pip install --upgrade transformers accelerate1from diffusers import AutoPipelineForText2Image
2import torch
3
4pipe = AutoPipelineForText2Image.from_pretrained("kandinsky-community/kandinsky-3", variant="fp16", torch_dtype=torch.float16)
5pipe.enable_model_cpu_offload()
6
7prompt = "A photograph of the inside of a subway train. There are raccoons sitting on the seats. One of them is reading a newspaper. The window shows the city in the background."
8
9generator = torch.Generator(device="cpu").manual_seed(0)
10image = pipe(prompt, num_inference_steps=25, generator=generator).images[0]1from diffusers import AutoPipelineForImage2Image
2from diffusers.utils import load_image
3import torch
4
5pipe = AutoPipelineForImage2Image.from_pretrained("kandinsky-community/kandinsky-3", variant="fp16", torch_dtype=torch.float16)
6pipe.enable_model_cpu_offload()
7
8prompt = "A painting of the inside of a subway train with tiny raccoons."
9image = load_image("https://huggingface.co/datasets/hf-internal-testing/diffusers-images/resolve/main/kandinsky3/t2i.png")
10
11generator = torch.Generator(device="cpu").manual_seed(0)
12image = pipe(prompt, image=image, strength=0.75, num_inference_steps=25, generator=generator).images[0]![]() | ![]() | ![]() | ![]() |
| "A beautiful landscape outdoors scene in the crochet knitting art style, drawing in style by Alfons Mucha" | "gorgeous phoenix, cosmic, darkness, epic, cinematic, moonlight, stars, high - definition, texture,Oscar-Claude Monet" | "a yellow house at the edge of the danish fjord, in the style of eiko ojala, ingrid baars, ad posters, mountainous vistas, george ault, realistic details, dark white and dark gray, 4k" | "dragon fruit head, upper body, realistic, illustration by Joshua Hoffine Norman Rockwell, scary, creepy, biohacking, futurism, Zaha Hadid style" |
![]() | ![]() | ![]() | ![]() |
| "Amazing playful nice cute strawberry character, dynamic poze, surreal fantazy garden background, gorgeous masterpice, award winning photo, soft natural lighting, 3d, Blender, Octane render, tilt - shift, deep field, colorful, I can't believe how beautiful this is, colorful, cute and sweet baby - loved photo" | "beautiful fairy-tale desert, in the sky a wave of sand merges with the milky way, stars, cosmism, digital art, 8k" | "Car, mustang, movie, person, poster, car cover, person, in the style of alessandro gottardo, gold and cyan, gerald harvey jones, reflections, highly detailed illustrations, industrial urban scenes"" | "cloud in blue sky, a red lip, collage art, shuji terayama, dreamy objects, surreal, criterion collection, showa era, intricate details, mirror" |