Instructions to use shuttleai/shuttle-3-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use shuttleai/shuttle-3-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("shuttleai/shuttle-3-diffusion", dtype=torch.bfloat16, device_map="cuda") prompt = "Venus floating market at dawn, fantasy digital art, highly detailed, atmospheric lighting with film-like light leaks, impressive background, studio photo style, cinematic, intricate details." image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -14,6 +14,8 @@ tags:
|
|
| 14 |
|
| 15 |
Shuttle 3 Diffusion is a text-to-image AI model designed to create detailed and diverse images from textual prompts. It offers enhanced performance in image quality, typography, understanding complex prompts, and resource efficiency.
|
| 16 |
|
|
|
|
|
|
|
| 17 |
## Using the model via API
|
| 18 |
You can use Shuttle 3 Diffusion via API through ShuttleAI
|
| 19 |
- [ShuttleAI](https://shuttleai.com/)
|
|
|
|
| 14 |
|
| 15 |
Shuttle 3 Diffusion is a text-to-image AI model designed to create detailed and diverse images from textual prompts. It offers enhanced performance in image quality, typography, understanding complex prompts, and resource efficiency.
|
| 16 |
|
| 17 |
+
You can try out the model through a website at https://chat.shuttleai.com/images
|
| 18 |
+
|
| 19 |
## Using the model via API
|
| 20 |
You can use Shuttle 3 Diffusion via API through ShuttleAI
|
| 21 |
- [ShuttleAI](https://shuttleai.com/)
|