Instructions to use tensor-diffusion/melaura-v1-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use tensor-diffusion/melaura-v1-1 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("tensor-diffusion/melaura-v1-1", dtype=torch.bfloat16, device_map="cuda") prompt = "melaura, girl, hd, pink lips, detailed, age 16, Off-shoulder top" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
license: cc-by-nc-2.0
|
| 2 |
pipeline_tag: text-to-image
|
| 3 |
tags:
|
|
@@ -25,4 +26,5 @@ widget:
|
|
| 25 |
example_title: Off-shoulder top
|
| 26 |
- text: melaura, girl, hd, shiny cheeks
|
| 27 |
example_title: shiny cheeks
|
| 28 |
-
library_name: diffusers
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
license: cc-by-nc-2.0
|
| 3 |
pipeline_tag: text-to-image
|
| 4 |
tags:
|
|
|
|
| 26 |
example_title: Off-shoulder top
|
| 27 |
- text: melaura, girl, hd, shiny cheeks
|
| 28 |
example_title: shiny cheeks
|
| 29 |
+
library_name: diffusers
|
| 30 |
+
---
|