https://github.com/mythrantic/recommendation-engine
recommendation-engine i use on some of my project gathered together
https://github.com/mythrantic/recommendation-engine
collaborative-filtering python recommendation-engine semantic-search
Last synced: 6 months ago
JSON representation
recommendation-engine i use on some of my project gathered together
- Host: GitHub
- URL: https://github.com/mythrantic/recommendation-engine
- Owner: mythrantic
- License: other
- Created: 2024-04-13T16:16:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-14T12:22:04.000Z (12 months ago)
- Last Synced: 2025-03-25T10:51:19.196Z (7 months ago)
- Topics: collaborative-filtering, python, recommendation-engine, semantic-search
- Language: Jupyter Notebook
- Homepage: https://recommendation-engine.valiantlynx.com/
- Size: 70.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
shows how to build a movie recommender system using SVD, a collaborative filtering method. The dataset used is the generated form the manga database but can test it with [MovieLens Latest Small Dataset](https://grouplens.org/datasets/movielens/latest/).
## Collaborative Filtering
Collaborative filtering represents a fundamental method employed within numerous recommendation systems, facilitating the prognostication of user preferences by leveraging data derived from other users. This technique is grounded in the assumption that users who have exhibited comparable preferences historically are inclined to continue exhibiting congruent preferences in the future. `Singular Value Decomposition (SVD)` emerges as a precise `matrix factorization` technique employed for effecting such predictions. In the context of constructing our movie recommender, we will harness the implementation of SVD provided by the Numpy library.