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
Add pipeline_tag and paper link
#2
by nielsr HF Staff - opened
This PR updates the model card by adding the pipeline_tag: text-to-audio to the metadata, which is crucial for categorizing the model correctly. It also includes the paper title and a direct link to the paper at the beginning of the content for better visibility.
OpenSound changed pull request status to merged