--- base_model: krea/Krea-2-Raw tags: - text-to-image - diffusers - lora - krea2 - template:sd-lora license: apache-2.0 instance_prompt: "Beth1" widget: - text: "A cinematic portrait of Beth1 as a cyberpunk hacker in a neon-drenched Tokyo alleyway, surrounded by holographic displays." output: url: sample_0.png - text: "Beth1 dressed as a regal Victorian queen, sitting on an ornate gold throne in a grand marble ballroom." output: url: sample_1.png - text: "A high-action shot of Beth1 as an astronaut floating in zero gravity inside a futuristic space station overlooking Saturn." output: url: sample_2.png - text: "Beth1 as a whimsical forest sprite with iridescent wings, perched on a giant glowing mushroom in a mystical woodland." output: url: sample_3.png - text: "A gritty, black-and-white noir scene featuring Beth1 as a 1940s detective standing under a streetlamp in the rain." output: url: sample_4.png - text: "Beth1 as a professional deep-sea diver exploring a bioluminescent coral reef with colorful alien fish." output: url: sample_5.png - text: "A vibrant oil painting of Beth1 as a Renaissance scholar in a dusty library filled with ancient scrolls." output: url: sample_6.png - text: "Beth1 as a post-apocalyptic scavenger wearing rusted armor, standing atop a ruined skyscraper in a desert wasteland." output: url: sample_7.png - text: "A cozy, sun-drenched scene of Beth1 baking bread in a rustic French country kitchen with flour in the air." output: url: sample_8.png - text: "Beth1 as a powerful sorceress casting a swirling vortex of cosmic energy amidst a field of floating crystals." output: url: sample_9.png --- # Krea 2 LoRA — Lonuhbow/beth 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). ## Trigger Use the token `Beth1` to invoke the concept. ## Samples ![sample](./sample_0.png) > *"A cinematic portrait of Beth1 as a cyberpunk hacker in a neon-drenched Tokyo alleyway, surrounded by holographic displays."* ![sample](./sample_1.png) > *"Beth1 dressed as a regal Victorian queen, sitting on an ornate gold throne in a grand marble ballroom."* ![sample](./sample_2.png) > *"A high-action shot of Beth1 as an astronaut floating in zero gravity inside a futuristic space station overlooking Saturn."* ![sample](./sample_3.png) > *"Beth1 as a whimsical forest sprite with iridescent wings, perched on a giant glowing mushroom in a mystical woodland."* ![sample](./sample_4.png) > *"A gritty, black-and-white noir scene featuring Beth1 as a 1940s detective standing under a streetlamp in the rain."* ![sample](./sample_5.png) > *"Beth1 as a professional deep-sea diver exploring a bioluminescent coral reef with colorful alien fish."* ![sample](./sample_6.png) > *"A vibrant oil painting of Beth1 as a Renaissance scholar in a dusty library filled with ancient scrolls."* ![sample](./sample_7.png) > *"Beth1 as a post-apocalyptic scavenger wearing rusted armor, standing atop a ruined skyscraper in a desert wasteland."* ![sample](./sample_8.png) > *"A cozy, sun-drenched scene of Beth1 baking bread in a rustic French country kitchen with flour in the air."* ![sample](./sample_9.png) > *"Beth1 as a powerful sorceress casting a swirling vortex of cosmic energy amidst a field of floating crystals."* ## Use it with diffusers ```py import torch from diffusers import Krea2Pipeline pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda") pipe.load_lora_weights("Lonuhbow/beth") image = pipe("A cinematic portrait of Beth1 as a cyberpunk hacker in a neon-drenched Tokyo alleyway, surrounded by holographic displays.", num_inference_steps=8, guidance_scale=0.0).images[0] image.save("output.png") ```