Instructions to use OpenSound/EzAudio with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use OpenSound/EzAudio with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("OpenSound/EzAudio") pipe = StableDiffusionControlNetPipeline.from_pretrained( "fill-in-base-model", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,7 +28,7 @@ Install the dependencies:
|
|
| 28 |
cd EzAudio
|
| 29 |
pip install -r requirements.txt
|
| 30 |
```
|
| 31 |
-
Download checkponts from: [https://huggingface.co/OpenSound/EzAudio](https://huggingface.co/OpenSound/EzAudio)
|
| 32 |
|
| 33 |
## Usage
|
| 34 |
|
|
|
|
| 28 |
cd EzAudio
|
| 29 |
pip install -r requirements.txt
|
| 30 |
```
|
| 31 |
+
Download checkponts from: [https://huggingface.co/OpenSound/EzAudio](https://huggingface.co/OpenSound/EzAudio/tree/main)
|
| 32 |
|
| 33 |
## Usage
|
| 34 |
|