Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MusicGen Style: text-and-style conditioning generation sample fix #504

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/MUSICGEN_STYLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ model.set_style_conditioner_params(
melody, sr = torchaudio.load('./assets/electronic.mp3')

descriptions = ["8-bit old video game music", "Chill lofi remix", "80s New wave with synthesizer"]
wav = model.generate_with_chroma(descriptions=["8-bit old video game music"],
wav = model.generate_with_chroma(descriptions=descriptions,
melody[None].expand(3, -1, -1), sr) # generates 3 samples.

for idx, one_wav in enumerate(wav):
Expand Down
Loading