Instructions to use kashif/music-spectrogram-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use kashif/music-spectrogram-diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("kashif/music-spectrogram-diffusion", 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
|
@@ -7,6 +7,7 @@ tags:
|
|
| 7 |
|
| 8 |
# Multi-instrument Music Synthesis with Spectrogram Diffusion
|
| 9 |
|
|
|
|
| 10 |
|
| 11 |
## Abstract
|
| 12 |
|
|
|
|
| 7 |
|
| 8 |
# Multi-instrument Music Synthesis with Spectrogram Diffusion
|
| 9 |
|
| 10 |
+
[Spectrogram Diffusion](https://arxiv.org/abs/2206.05408) by Curtis Hawthorne, Ian Simon, Adam Roberts, Neil Zeghidour, Josh Gardner, Ethan Manilow, and Jesse Engel.
|
| 11 |
|
| 12 |
## Abstract
|
| 13 |
|