Text-to-Image
Diffusers
English
art
people
diffusion
Cinematic
Photography
Landscape
Interior
Food
Car
Wildlife
Architecture
Instructions to use lenML/lofi-v5-final with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lenML/lofi-v5-final with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("lenML/lofi-v5-final", dtype=torch.bfloat16, device_map="cuda") prompt = "an evil demonic woman, white hair, blue eyes, short messy hair, arrogant mood, analog photo" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: openrail++
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: openrail++
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
library_name: diffusers
|
| 6 |
+
tags:
|
| 7 |
+
- art
|
| 8 |
+
- people
|
| 9 |
+
- diffusion
|
| 10 |
+
- Cinematic
|
| 11 |
+
- Photography
|
| 12 |
+
- Landscape
|
| 13 |
+
- Interior
|
| 14 |
+
- Food
|
| 15 |
+
- Car
|
| 16 |
+
- Wildlife
|
| 17 |
+
- Architecture
|
| 18 |
+
pipeline_tag: text-to-image
|
| 19 |
+
---
|