Instructions to use nick911/Tanjiro-LoRA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use nick911/Tanjiro-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("nick911/Tanjiro-LoRA", dtype=torch.bfloat16, device_map="cuda") prompt = "mdvl" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
tags:
|
| 5 |
-
- lora
|
| 6 |
- text-to-image
|
| 7 |
-
|
| 8 |
inference: true
|
| 9 |
---
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: stabilityai/sdxl-turbo
|
| 3 |
+
instance_prompt: mdvl
|
| 4 |
tags:
|
|
|
|
| 5 |
- text-to-image
|
| 6 |
+
- diffusers
|
| 7 |
inference: true
|
| 8 |
---
|