feat: learned recommendation engine (For You / Cleanup)#2228
Open
tankxbvr wants to merge 1 commit into
Open
Conversation
Single-user, content-based recommender that scores the library into two system playlists - "For You" (watch) and "Cleanup" (delete candidates) - surfaced through the existing scene lists / HereSphere. - Learns a taste profile from ratings, favourites and watch history; optional logistic-regression and factorization-machine rankers. - Signals: actors, tags, sites, resolution, freshness, file size and a no-reference visual-quality score; optional MobileNetV2 visual embeddings (CPU, ONNX Runtime, opt-in, default off). - Cleanup protects favourites, watchlisted, recently-rated and recently -added scenes; For You can exclude recently-watched scenes. - Daily deterministic noise so both lists refresh day to day. - Options -> Recommendations, plus a recompute schedule.
tankxbvr
force-pushed
the
feature/recommendation-engine
branch
from
July 18, 2026 14:54
314e23c to
d47b98f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a single-user, content-based recommendation engine that scores the library into two system playlists — For You (watch) and Cleanup (delete candidates) — surfaced through the existing scene lists / HereSphere.
The only new dependency is
onnxruntime_go(for the opt-in embeddings; it dlopens at runtime, so it builds without the native lib). Seepkg/recommend/DESIGN.mdfor the scoring model.