Views
No views yet

| Images | ![]() | ![]() | ![]() | ![]() |
|---|---|---|---|---|
| prompt | A model wearing an orange and blue sweater with a knitted pattern, detailed face, ginger hair color, blue background, shot in the style of Tim Walker | A studio shot of a figure composed of vivid, realistic flames walking in side profile, no face, with flames trailing naturally behind, against an intense red background, Captured by Helmut Newton, with a Hasselblad H6D and an 80mm f/2.8 lens at f/5.6, 1/125s, ISO 400. The flames are intense and detailed, with a natural, realistic texture that emphasizes the movement. HD quality, natural look | A surreal photograph of a man with his head covered in large, fluffy cotton clouds, sitting in an armchair facing the camera and using an old computer from the early 20th century. The computer has a green screen monitor. He is wearing a pink suit, and the overall scene has a soft, pastel color palette with a retro futuristic, 1970s vibe | highend portrait of a cool ginger cat, high fashion Style with crazy glasses and stylish clothes and luxury necklace of jeweleries, hat consisting of lilies, oranges and lemons, color: dark green and gold, background: dark and luxury, hyper detailled, stil: raw, cinematic light, canon, expressive and original, canon, 50 mm lens, editorial, look: expensive, mood: motivated and good vibes |
| Images | ![]() | ![]() | ![]() |
|---|---|---|---|
| prompt | 雪山之巅红日东升 | 一只可爱的 🐼 在吃 🎋, 水墨画风格 | 孤舟蓑笠翁 |
| Images | ![]() | ![]() | ![]() |
|---|---|---|---|
| prompt | a cat floating in a body of water in the pool, Lean back clear and transparent water, light white, and turquoise, y2k aesthetic, soft and dreamy colors, brightly colored, popular Instagram, highlevel of detail, realistic photo feeling | A black cat sits on the ground, facing away from us and casting its shadow in front of it. The silhouette of a majestic lion is projected onto the wall by the light source behind the scene. Black and white photography, soft lighting, high contrast, sharp focus, symmetrical composition, simple background, portrait lens, static posture. | 🐶 和 🐱 玩 ⚽ |
generative-models Github repository (https://github.com/NVlabs/Sana),
which is more suitable for both training and inference and for which most advanced diffusion sampler like Flow-DPM-Solver is integrated.
MIT Han-Lab provides free Sana inference.SanaPipeline with 🧨diffusers[!IMPORTANT] Make sure to specifypipe.transformerto defaulttorch_dtypeandvariantaccording to Model Card.
1# run `pip install git+https://github.com/huggingface/diffusers` before use Sana in diffusers
2import torch
3from diffusers import SanaPipeline
4
5pipe = SanaPipeline.from_pretrained(
6 "Efficient-Large-Model/Sana_1600M_2Kpx_BF16_diffusers",
7 variant="bf16",
8 torch_dtype=torch.bfloat16,
9)
10pipe.to("cuda")
11
12pipe.vae.to(torch.bfloat16)
13pipe.text_encoder.to(torch.bfloat16)
14
15prompt = 'A cute 🐼 eating 🎋, ink drawing style'
16image = pipe(
17 prompt=prompt,
18 height=2048,
19 width=2048,
20 guidance_scale=5.0,
21 num_inference_steps=20,
22 generator=torch.Generator(device="cuda").manual_seed(42),
23)[0]
24
25image[0].save("sana.png")SanaPAGPipeline with 🧨diffusers1# run `pip install git+https://github.com/huggingface/diffusers` before use Sana in diffusers
2import torch
3from diffusers import SanaPAGPipeline
4
5pipe = SanaPAGPipeline.from_pretrained(
6 "Efficient-Large-Model/Sana_1600M_2Kpx_BF16_diffusers",
7 variant="bf16",
8 torch_dtype=torch.bfloat16,
9 pag_applied_layers="transformer_blocks.8",
10)
11pipe.to("cuda")
12
13pipe.text_encoder.to(torch.bfloat16)
14pipe.vae.to(torch.bfloat16)
15
16prompt = 'A cute 🐼 eating 🎋, ink drawing style'
17image = pipe(
18 prompt=prompt,
19 height=2048,
20 width=2048,
21 guidance_scale=5.0,
22 pag_scale=2.0,
23 num_inference_steps=20,
24 generator=torch.Generator(device="cuda").manual_seed(42),
25)[0]
26image[0].save('sana.png')