Text-to-Image
Diffusers
VersatileDiffusionPipeline
image-to-text
image-to-image
text-to-text
image-editing
image-variation
generation
vision
Instructions to use shi-labs/versatile-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use shi-labs/versatile-diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("shi-labs/versatile-diffusion", dtype=torch.bfloat16, device_map="cuda") prompt = "A high tech solarpunk utopia in the Amazon rainforest" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
tags:
|
| 4 |
-
- generation
|
| 5 |
-
- text-to-image
|
| 6 |
-
- image-variation
|
| 7 |
- image-to-text
|
|
|
|
|
|
|
|
|
|
| 8 |
- image-editing
|
|
|
|
|
|
|
| 9 |
- vision
|
| 10 |
datasets:
|
| 11 |
- Laion2B-en
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
tags:
|
|
|
|
|
|
|
|
|
|
| 4 |
- image-to-text
|
| 5 |
+
- image-to-image
|
| 6 |
+
- text-to-image
|
| 7 |
+
- text-to-text
|
| 8 |
- image-editing
|
| 9 |
+
- image-variation
|
| 10 |
+
- generation
|
| 11 |
- vision
|
| 12 |
datasets:
|
| 13 |
- Laion2B-en
|