Instructions to use Gimbor/cuth123 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Gimbor/cuth123 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("Gimbor/cuth123") prompt = "A futuristic neon-drenched cyberpunk cityscape where a majestic golden lion with holographic wings stalks through the rain, Cuth123, cinematic lighting." image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -9,13 +9,13 @@ tags:
|
|
| 9 |
license: apache-2.0
|
| 10 |
instance_prompt: "Cuth123"
|
| 11 |
widget:
|
| 12 |
-
- text: "A futuristic cyberpunk
|
| 13 |
output:
|
| 14 |
url: sample_0.png
|
| 15 |
-
- text: "
|
| 16 |
output:
|
| 17 |
url: sample_1.png
|
| 18 |
-
- text: "A
|
| 19 |
output:
|
| 20 |
url: sample_2.png
|
| 21 |
---
|
|
@@ -34,15 +34,15 @@ Use the token `Cuth123` to invoke the concept.
|
|
| 34 |
|
| 35 |

|
| 36 |
|
| 37 |
-
> *"A futuristic cyberpunk
|
| 38 |
|
| 39 |

|
| 40 |
|
| 41 |
-
> *"
|
| 42 |
|
| 43 |

|
| 44 |
|
| 45 |
-
> *"A
|
| 46 |
|
| 47 |
## Use it with diffusers
|
| 48 |
|
|
@@ -52,6 +52,6 @@ from diffusers import Krea2Pipeline
|
|
| 52 |
|
| 53 |
pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
|
| 54 |
pipe.load_lora_weights("Gimbor/cuth123")
|
| 55 |
-
image = pipe("A futuristic cyberpunk
|
| 56 |
image.save("output.png")
|
| 57 |
```
|
|
|
|
| 9 |
license: apache-2.0
|
| 10 |
instance_prompt: "Cuth123"
|
| 11 |
widget:
|
| 12 |
+
- text: "A futuristic neon-drenched cyberpunk cityscape where a majestic golden lion with holographic wings stalks through the rain, Cuth123, cinematic lighting."
|
| 13 |
output:
|
| 14 |
url: sample_0.png
|
| 15 |
+
- text: "A serene, sun-dappled ancient library with floating books and swirling stardust, featuring a majestic golden lion resting on a velvet rug, Cuth123, ethereal atmosphere."
|
| 16 |
output:
|
| 17 |
url: sample_1.png
|
| 18 |
+
- text: "A vivid underwater coral kingdom with glowing jellyfish and iridescent fish surrounding a majestic golden lion swimming gracefully through the deep blue, Cuth123, hyper-realistic."
|
| 19 |
output:
|
| 20 |
url: sample_2.png
|
| 21 |
---
|
|
|
|
| 34 |
|
| 35 |

|
| 36 |
|
| 37 |
+
> *"A futuristic neon-drenched cyberpunk cityscape where a majestic golden lion with holographic wings stalks through the rain, Cuth123, cinematic lighting."*
|
| 38 |
|
| 39 |

|
| 40 |
|
| 41 |
+
> *"A serene, sun-dappled ancient library with floating books and swirling stardust, featuring a majestic golden lion resting on a velvet rug, Cuth123, ethereal atmosphere."*
|
| 42 |
|
| 43 |

|
| 44 |
|
| 45 |
+
> *"A vivid underwater coral kingdom with glowing jellyfish and iridescent fish surrounding a majestic golden lion swimming gracefully through the deep blue, Cuth123, hyper-realistic."*
|
| 46 |
|
| 47 |
## Use it with diffusers
|
| 48 |
|
|
|
|
| 52 |
|
| 53 |
pipe = Krea2Pipeline.from_pretrained("krea/Krea-2-Turbo", torch_dtype=torch.bfloat16).to("cuda")
|
| 54 |
pipe.load_lora_weights("Gimbor/cuth123")
|
| 55 |
+
image = pipe("A futuristic neon-drenched cyberpunk cityscape where a majestic golden lion with holographic wings stalks through the rain, Cuth123, cinematic lighting.", num_inference_steps=8, guidance_scale=0.0).images[0]
|
| 56 |
image.save("output.png")
|
| 57 |
```
|