Instructions to use amd/FLUX.1-dev_io16_amdgpu with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use amd/FLUX.1-dev_io16_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("amd/FLUX.1-dev_io16_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
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -21,10 +21,12 @@ _io16: model input is fp16, perform ops in fp16 and write the final result in fp
|
|
| 21 |
## Running
|
| 22 |
|
| 23 |
### 1. Using Amuse GUI Application
|
| 24 |
-
Download and install Amuse GUI application to run it: https://www.amuse-ai.com/
|
| 25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
-
### 2. C# Inference Demo
|
| 28 |
https://github.com/TensorStack-AI/OnnxStack
|
| 29 |
|
| 30 |
```
|
|
|
|
| 21 |
## Running
|
| 22 |
|
| 23 |
### 1. Using Amuse GUI Application
|
|
|
|
| 24 |
|
| 25 |
+
Use Amuse GUI application to run it: https://www.amuse-ai.com/
|
| 26 |
+
use _io32 model to run with Amuse application
|
| 27 |
+
|
| 28 |
+
### 2. Inference Demo
|
| 29 |
|
|
|
|
| 30 |
https://github.com/TensorStack-AI/OnnxStack
|
| 31 |
|
| 32 |
```
|