Instructions to use StaticExposure/benji-style-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use StaticExposure/benji-style-lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Qwen/Qwen-Image", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("StaticExposure/benji-style-lora") prompt = "BENJIBOOK" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: Qwen/Qwen-Image
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
tags:
|
| 5 |
+
- lora
|
| 6 |
+
- qwen-image
|
| 7 |
+
- text-to-image
|
| 8 |
+
instance_prompt: BENJIBOOK
|
| 9 |
+
---
|
| 10 |
+
# Benji Style LoRA (v3, step 1250)
|
| 11 |
+
Style LoRA for Qwen-Image. Trigger word: BENJIBOOK.
|