Files
yellowjacket/backend/explore/eval/testdata/eval_queries.json
T
yonluandClaude Opus 4.8 65048401e8 feat: autotag scoring overhaul, dump-based explore index, and lyrics search
Consolidates in-progress work across autotag, explore, and library:

- autotag: beets/Picard-informed scoring engine — ID-first matching, VA
  handling, recommendation tiers, and a merged distance/rank cascade, with
  an eval harness for regression tracking.
- explore: offline MusicBrainz dump import/incremental refresh replaces the
  legacy tier crawl; index-first local search with fuzzy matching and a
  dedicated ranker; disk-free guards for dump downloads.
- library: artist-credit extraction and matching.
- lyrics: owned-library lyric search (FTS) with LRCLIB backfill.

Also: rewrite README to be user-focused, and migrate upstream to
git.ljones.me/yonlu/yellowjacket.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-24 12:14:20 -04:00

33 lines
1.2 KiB
JSON

[
{
"query": "radiohead",
"note": "single-word artist name — should resolve to the artist, not an album titled similarly",
"expect": [{ "type": "artist", "mbid": "a74b1b7f-71a5-4011-9441-d0b5e4122711" }]
},
{
"query": "the beatles",
"note": "common-word prefix must not let the article dominate",
"expect": [{ "type": "artist", "mbid": "b10bbbfc-cf9e-42e0-be17-e2c3e1d2600d" }]
},
{
"query": "abbey road",
"note": "album title — should rank the release group above any track of the same name",
"expect": [{ "type": "release_group", "mbid": "" }]
},
{
"query": "calling you blue october",
"note": "composite title+artist query — recording should win even if the artist is unindexed",
"expect": [{ "type": "recording", "mbid": "" }]
},
{
"query": "the teenagers",
"note": "regression: must rank The Teenagers above The Beatles despite far lower popularity",
"expect": [{ "type": "artist", "mbid": "" }]
},
{
"query": "beyonce",
"note": "diacritic folding (migration 37): unaccented query must find the accented artist Beyoncé",
"expect": [{ "type": "artist", "mbid": "859d0860-d480-4efd-970c-c05d5f1776b8" }]
}
]