Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 790 Bytes

readme.md

File metadata and controls

11 lines (7 loc) · 790 Bytes

Tiny Musicgen

This codebase implements MusicGen in both Torch & Tinygrad. Both implementations are about ~200 lines, depending on how you count. Should note, the Tinygrad implementation is unreasonably slow on NVIDIA, but can do 2 tokens / second on my M2 MacBook.

My aim was more to implement it very simply & readably, and so I've skipped any semblence of:

  • Flexibility/reusability in the transformer
  • Einsum, and other sorcery that confuses me
  • Conditioning the model on genre / instruments / etc - this one will just autoregressively generate random songs

I originally didn't have caching or flash attention, but I've added that back in to make it usable for longer sequences.