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