f0c08e7326
Milestone #160 Opt 2b (mood half of the era+mood option). A fourth taste facet alongside artists + genre tags + eras: signed weights over canonical mood buckets (melancholic / energetic / chill / …) derived from a track's enriched folksonomy tags (#1490). - internal/mood: shared vocabulary — Of(tags) maps folksonomy tags to canonical mood buckets (synonyms collapse). Imported by both the taste builder and the scorer so a track's mood is derived identically. - Migration 0047: taste_profile_moods table + taste_tuning.mood_scale (DEFAULT 0.5). - Build side (internal/taste): Config.MoodScale ([0,1] damper, mirrors EraScale); accumulate folds each play/like's mood buckets at base*MoodScale; persist atomic-replaces the mood rows. - Scorer (internal/recommendation): TasteProfile gains a mood term (own tanh scale + additive 0.12 share, so it never weakens the existing signal when a track has no mood tags). Match now takes the candidate's mood buckets; loaded per candidate (ListTrackTagsForTracks → mood.Of) in the primary similarity loader only — the near-whole-library fallback pool passes nil (mood → 0) to avoid a full-library tag scan. - Tuning lab: mood_scale threaded through recsettings + admin API + web card ("Mood weight" row) + Go/web tests. Coverage is partial (grows with tag enrichment; richer once Last.fm is keyed), so mood is a supplement — neutral for tracks with no mood tags. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
103 lines
3.4 KiB
SQL
103 lines
3.4 KiB
SQL
-- Taste profile (#796 phase 1). The daily build computes signed artist/tag
|
|
-- weights in Go (graded engagement + decay + like bonus) and atomic-replaces
|
|
-- them here. Read queries serve "top taste" lookups (used in phase 2).
|
|
|
|
-- name: ListPlayEngagementInputsForUser :many
|
|
-- One row per play in the decay-relevant window. completion is the play's
|
|
-- completion ratio (precomputed column when present, else duration_played /
|
|
-- track duration, clamped to [0,1]); age_days drives the time-decay. Genre
|
|
-- is split into tags in Go; release_date derives the decade for the era
|
|
-- facet (#1530). Quarantined tracks are excluded.
|
|
SELECT
|
|
t.id AS track_id,
|
|
t.artist_id,
|
|
t.genre,
|
|
a.release_date,
|
|
LEAST(GREATEST(
|
|
COALESCE(pe.completion_ratio,
|
|
pe.duration_played_ms::float8 / NULLIF(t.duration_ms, 0),
|
|
0), 0), 1)::float8 AS completion,
|
|
(EXTRACT(epoch FROM now() - pe.started_at) / 86400.0)::float8 AS age_days
|
|
FROM play_events pe
|
|
JOIN tracks t ON t.id = pe.track_id
|
|
JOIN albums a ON a.id = t.album_id
|
|
WHERE pe.user_id = $1
|
|
AND pe.started_at > now() - ($2::float8 * INTERVAL '1 day')
|
|
AND NOT EXISTS (
|
|
SELECT 1 FROM lidarr_quarantine q
|
|
WHERE q.user_id = $1 AND q.track_id = t.id
|
|
);
|
|
|
|
-- name: ListLikedTrackTasteInputsForUser :many
|
|
-- (track_id, artist_id, genre, release_date) for each track the user has
|
|
-- explicitly liked. Feeds the track-like bonus into the liked track's artist,
|
|
-- tags, and era (#1530); track_id keys the enriched track_tags lookup (#1490).
|
|
SELECT t.id AS track_id, t.artist_id, t.genre, a.release_date
|
|
FROM general_likes gl
|
|
JOIN tracks t ON t.id = gl.track_id
|
|
JOIN albums a ON a.id = t.album_id
|
|
WHERE gl.user_id = $1;
|
|
|
|
-- name: ListLikedArtistIDsForUser :many
|
|
-- Artists the user has explicitly liked; feeds the artist-like bonus.
|
|
SELECT artist_id FROM general_likes_artists WHERE user_id = $1;
|
|
|
|
-- name: DeleteTasteProfileArtistsForUser :exec
|
|
DELETE FROM taste_profile_artists WHERE user_id = $1;
|
|
|
|
-- name: InsertTasteProfileArtist :exec
|
|
INSERT INTO taste_profile_artists (user_id, artist_id, weight)
|
|
VALUES ($1, $2, $3);
|
|
|
|
-- name: DeleteTasteProfileTagsForUser :exec
|
|
DELETE FROM taste_profile_tags WHERE user_id = $1;
|
|
|
|
-- name: InsertTasteProfileTag :exec
|
|
INSERT INTO taste_profile_tags (user_id, tag, weight)
|
|
VALUES ($1, $2, $3);
|
|
|
|
-- name: ListTasteProfileArtistsForUser :many
|
|
-- Top-weighted taste artists (phase-2 consumption + tests).
|
|
SELECT artist_id, weight
|
|
FROM taste_profile_artists
|
|
WHERE user_id = $1
|
|
ORDER BY weight DESC
|
|
LIMIT $2;
|
|
|
|
-- name: ListTasteProfileTagsForUser :many
|
|
SELECT tag, weight
|
|
FROM taste_profile_tags
|
|
WHERE user_id = $1
|
|
ORDER BY weight DESC
|
|
LIMIT $2;
|
|
|
|
-- name: DeleteTasteProfileErasForUser :exec
|
|
DELETE FROM taste_profile_eras WHERE user_id = $1;
|
|
|
|
-- name: InsertTasteProfileEra :exec
|
|
INSERT INTO taste_profile_eras (user_id, era, weight)
|
|
VALUES ($1, $2, $3);
|
|
|
|
-- name: ListTasteProfileErasForUser :many
|
|
-- Top-weighted taste eras (#1530); consumed by the scorer's era term.
|
|
SELECT era, weight
|
|
FROM taste_profile_eras
|
|
WHERE user_id = $1
|
|
ORDER BY weight DESC
|
|
LIMIT $2;
|
|
|
|
-- name: DeleteTasteProfileMoodsForUser :exec
|
|
DELETE FROM taste_profile_moods WHERE user_id = $1;
|
|
|
|
-- name: InsertTasteProfileMood :exec
|
|
INSERT INTO taste_profile_moods (user_id, mood, weight)
|
|
VALUES ($1, $2, $3);
|
|
|
|
-- name: ListTasteProfileMoodsForUser :many
|
|
-- Top-weighted taste moods (#1534); consumed by the scorer's mood term.
|
|
SELECT mood, weight
|
|
FROM taste_profile_moods
|
|
WHERE user_id = $1
|
|
ORDER BY weight DESC
|
|
LIMIT $2;
|