Instructions to use Lonuhbow/beth with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Lonuhbow/beth with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("krea/Krea-2-Raw", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("Lonuhbow/beth") prompt = "A cinematic portrait of Beth1 as a cyberpunk hacker in a neon-drenched Tokyo alleyway, surrounded by holographic displays." image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
File size: 3,882 Bytes
41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 41514c7 8588aa4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | ---
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
<Gallery />
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

> *"A cinematic portrait of Beth1 as a cyberpunk hacker in a neon-drenched Tokyo alleyway, surrounded by holographic displays."*

> *"Beth1 dressed as a regal Victorian queen, sitting on an ornate gold throne in a grand marble ballroom."*

> *"A high-action shot of Beth1 as an astronaut floating in zero gravity inside a futuristic space station overlooking Saturn."*

> *"Beth1 as a whimsical forest sprite with iridescent wings, perched on a giant glowing mushroom in a mystical woodland."*

> *"A gritty, black-and-white noir scene featuring Beth1 as a 1940s detective standing under a streetlamp in the rain."*

> *"Beth1 as a professional deep-sea diver exploring a bioluminescent coral reef with colorful alien fish."*

> *"A vibrant oil painting of Beth1 as a Renaissance scholar in a dusty library filled with ancient scrolls."*

> *"Beth1 as a post-apocalyptic scavenger wearing rusted armor, standing atop a ruined skyscraper in a desert wasteland."*

> *"A cozy, sun-drenched scene of Beth1 baking bread in a rustic French country kitchen with flour in the air."*

> *"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")
```
|