Instructions to use Azher/Anything-v4.5-vae-fp16-diffuser with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Azher/Anything-v4.5-vae-fp16-diffuser with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Azher/Anything-v4.5-vae-fp16-diffuser", 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
|
@@ -7,6 +7,7 @@
|
|
| 7 |
# Model: Anything v4.5
|
| 8 |
|
| 9 |
This diffuser is suitable for inference.
|
|
|
|
| 10 |
Has the following properties that are bundled right out of the box:
|
| 11 |
- Included: vae
|
| 12 |
- Half-precision floating point format: fp16
|
|
|
|
| 7 |
# Model: Anything v4.5
|
| 8 |
|
| 9 |
This diffuser is suitable for inference.
|
| 10 |
+
|
| 11 |
Has the following properties that are bundled right out of the box:
|
| 12 |
- Included: vae
|
| 13 |
- Half-precision floating point format: fp16
|