github NeptuneHub/AudioMuse-AI v2.1.0
AudioMuse AI v2.1.0: Lyrics model bugfix

4 hours ago

Release Date: May 25, 2026

AudioMuse AI v2.1.0 re-export the GTE Lyrics model to fix incorrect embeddings on older CPUs without VNNI support (avx512_vnni / avx_vnni). On previous AudioMuse-AI release, affected CPUs embeddings could overflow and produce inaccurate results.

To check whether your CPU supports VNNI:

grep -oE 'avx512_vnni|avx_vnni' /proc/cpuinfo | head -1

If result is empty, VNNI is not supported by your cpu.

This release also improves lyrics processing performance by skipping unnecessary song downloads when other analyses are already completed and lyrics are retrieved directly from the music server or an external API.

Re-analysis (only for CPUs without VNNI support)

If your CPU does not support VNNI, a full lyrics re-analysis is required. To trigger a re-analysis you need to drop the lyrics tables.

Replace the database connection parameters as needed:

PGPASSWORD=audiomusepassword psql -h 192.168.3.213 -p 5432 -U audiomuse -d audiomusedb \
  -c "DROP TABLE IF EXISTS lyrics_embedding; DROP TABLE IF EXISTS lyrics_index_data; DROP TABLE IF EXISTS lyrics_axes_index_data;"

Docker Compose:

docker compose exec -e PGPASSWORD=audiomusepassword postgres \
  psql -U audiomuse -d audiomusedb \
  -c "DROP TABLE IF EXISTS lyrics_embedding; DROP TABLE IF EXISTS lyrics_index_data; DROP TABLE IF EXISTS lyrics_axes_index_data;"

What's Changed

Full Changelog: v2.0.2...v2.1.0

Don't miss a new AudioMuse-AI release

NewReleases is sending notifications on new releases.