Downloads · 30 days
8
13% of all-time downloads
aimalias/sh10r1
sh10r1 is a text-to-image model from aimalias. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as apache-2.0.
Downloads · 30 days
8
13% of all-time downloads
All-time downloads
63
Public
Repo size
970 MB
Likes
0
Public
Click a slice to open those files.
.safetensors576 MB · 59%
From the Hugging Face model README
A DreamBooth-LoRA for Krea 2, trained on Krea 2 RAW and shown on Krea 2 Turbo. The samples below were generated with this LoRA on Turbo (8 steps).
Use the token SH10R1 woman to invoke the concept.

"A cinematic shot of a SH10R1 woman wearing iridescent futuristic armor, standing amidst the neon-lit skyscrapers of a rainy cyberpunk metropolis."

"A soft, ethereal portrait of a SH10R1 woman in a flowing white linen dress, wandering through a sun-drenched wildflower meadow at golden hour."

"A high-detail macro shot of a SH10R1 woman as a deep-sea diver, surrounded by bioluminescent jellyfish and glowing coral in the midnight zone of the ocean."
import torch
from diffusers import Krea2Pipeline
pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
pipe.load_lora_weights("aimalias/sh10r1")
image = pipe("A cinematic shot of a SH10R1 woman wearing iridescent futuristic armor, standing amidst the neon-lit skyscrapers of a rainy cyberpunk metropolis.", num_inference_steps=8, guidance_scale=0.0).images[0]
image.save("output.png")