Instructions to use stabilityai/stable-diffusion-3-medium_amdgpu with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use stabilityai/stable-diffusion-3-medium_amdgpu with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-3-medium_amdgpu", 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 safety section
Browse files
README.md
CHANGED
|
@@ -71,7 +71,8 @@ The model was not trained to be factual or true representations of people or eve
|
|
| 71 |
|
| 72 |
## **Safety**
|
| 73 |
|
| 74 |
-
As part of our safety-by-design and responsible AI
|
|
|
|
| 75 |
For more about our approach to Safety, please visit our [Safety page](https://stability.ai/safety).
|
| 76 |
|
| 77 |
### **Integrity Evaluation**
|
|
|
|
| 71 |
|
| 72 |
## **Safety**
|
| 73 |
|
| 74 |
+
As part of our safety-by-design and responsible AI development approach, we prioritize integrity from the earliest stages of model development. We implement safeguards throughout the development process to help reduce the risk of misuse. While we’ve built in protections to mitigate certain harms, we encourage developers to test responsibly based on their intended use cases and apply additional mitigations as needed.
|
| 75 |
+
|
| 76 |
For more about our approach to Safety, please visit our [Safety page](https://stability.ai/safety).
|
| 77 |
|
| 78 |
### **Integrity Evaluation**
|