Instructions to use tensorart/stable-diffusion-3.5-medium-turbo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use tensorart/stable-diffusion-3.5-medium-turbo with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("tensorart/stable-diffusion-3.5-medium-turbo", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,7 +40,7 @@ TensorArt Stable Diffusion 3.5 Medium Turbo (SD3.5M Turbo) is a high-performance
|
|
| 40 |
|
| 41 |
1. **Download the Model**
|
| 42 |
Download the latest versions of the model’s `ckpt` and `LoRA` files from the following links:
|
| 43 |
-
- [SD3.5M Checkpoint (Updated on 2024/12/16)](https://huggingface.co/tensorart/stable-diffusion-3.5-medium-turbo/blob/main/sd3.
|
| 44 |
- [SD3.5M LoRA (Updated on 2024/12/15)](https://huggingface.co/tensorart/stable-diffusion-3.5-medium-turbo/blob/main/lora_sd3.5m_turbo_8steps.safetensors)
|
| 45 |
|
| 46 |
2. **Environment Setup**
|
|
|
|
| 40 |
|
| 41 |
1. **Download the Model**
|
| 42 |
Download the latest versions of the model’s `ckpt` and `LoRA` files from the following links:
|
| 43 |
+
- [SD3.5M Checkpoint (Updated on 2024/12/16)](https://huggingface.co/tensorart/stable-diffusion-3.5-medium-turbo/blob/main/sd3.5m_turbo.safetensors)
|
| 44 |
- [SD3.5M LoRA (Updated on 2024/12/15)](https://huggingface.co/tensorart/stable-diffusion-3.5-medium-turbo/blob/main/lora_sd3.5m_turbo_8steps.safetensors)
|
| 45 |
|
| 46 |
2. **Environment Setup**
|