Update README.md
Browse files
README.md
CHANGED
@@ -74,6 +74,22 @@ Image Processing Parameters
|
|
74 |
| Prompt | Create a stunning wallpaper featuring a 3D bubbly-style Deadpool character in his iconic red and black suit, vividly showcasing his playful and irreverent personality. The character should be in a dynamic fighting pose, with his eyes narrowed and a cheeky grin, wielding dual katanas ready for action. Surround him with a glossy, distorted red and black background that has fluid-like waves, enhancing the chaotic and intense atmosphere. Above the character, incorporate the name "DEADPOOL" in a bold, white comic-style font with splatters of red, matching the overall theme. The image should have a surreal, melted appearance, giving it a dynamic, fluid texture that makes it ideal for a vibrant and action-packed wallpaper.' |
|
75 |
| Sampler | euler |
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
## Trigger words
|
78 |
|
79 |
You should use `3d bubbly`, `Fluid texture ` to trigger the image generation.
|
|
|
74 |
| Prompt | Create a stunning wallpaper featuring a 3D bubbly-style Deadpool character in his iconic red and black suit, vividly showcasing his playful and irreverent personality. The character should be in a dynamic fighting pose, with his eyes narrowed and a cheeky grin, wielding dual katanas ready for action. Surround him with a glossy, distorted red and black background that has fluid-like waves, enhancing the chaotic and intense atmosphere. Above the character, incorporate the name "DEADPOOL" in a bold, white comic-style font with splatters of red, matching the overall theme. The image should have a surreal, melted appearance, giving it a dynamic, fluid texture that makes it ideal for a vibrant and action-packed wallpaper.' |
|
75 |
| Sampler | euler |
|
76 |
|
77 |
+
## Setting Up
|
78 |
+
```
|
79 |
+
import torch
|
80 |
+
from pipelines import DiffusionPipeline
|
81 |
+
|
82 |
+
base_model = "black-forest-labs/FLUX.1-dev"
|
83 |
+
pipe = DiffusionPipeline.from_pretrained(base_model, torch_dtype=torch.bfloat16)
|
84 |
+
|
85 |
+
lora_repo = "prithivMLmods/Kepler-452b-LoRA-Flux-Dev-3D-Bubbly"
|
86 |
+
trigger_word = "3d bubbly, Fluid texture " # Leave trigger_word blank if not used.
|
87 |
+
pipe.load_lora_weights(lora_repo)
|
88 |
+
|
89 |
+
device = torch.device("cuda")
|
90 |
+
pipe.to(device)
|
91 |
+
```
|
92 |
+
|
93 |
## Trigger words
|
94 |
|
95 |
You should use `3d bubbly`, `Fluid texture ` to trigger the image generation.
|