mlx-examples/musicgen/README.md
Seitaro Sugawara a6ae63226f
Update README.md
A small typo was fixed in the musicgen README.md.
2024-10-14 14:06:35 +09:00

661 B

MusicGen

An example of Meta's MusicGen model in MLX.1 MusicGen is used to generate music from text descriptions.

Setup

Install the requirements:

pip install -r requirements.txt

Example

An example using the model:

import mlx.core as mx
from musicgen import MusicGen
from utils import save_audio

model = MusicGen.from_pretrained("facebook/musicgen-medium")

audio = model.generate("happy rock")

save_audio("out.wav", audio, model.sampling_rate)

  1. Refer to the arXiv paper and code for more details. ↩︎