Instructions to use Hippotes/Ace-Step1.5-repackages with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Hippotes/Ace-Step1.5-repackages with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Hippotes/Ace-Step1.5-repackages", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
Repackage of [Ace-Step1.5 FP32 VAE](https://huggingface.co/ACE-Step/ace-step-v1.5-1d-vae-stable-audio-format) to match ComfyUI keys + .safetensors format.
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
library_name: diffusers
|
| 4 |
+
tags:
|
| 5 |
+
- comfyui
|
| 6 |
+
- safetensors
|
| 7 |
+
base_model:
|
| 8 |
+
- ACE-Step/ace-step-v1.5-1d-vae-stable-audio-format
|
| 9 |
+
pipeline_tag: text-to-audio
|
| 10 |
---
|
| 11 |
|
| 12 |
Repackage of [Ace-Step1.5 FP32 VAE](https://huggingface.co/ACE-Step/ace-step-v1.5-1d-vae-stable-audio-format) to match ComfyUI keys + .safetensors format.
|