All Projects → jrzaurin → Recotour

jrzaurin / Recotour

A tour through recommendation algorithms in python [IN PROGRESS]

Programming Languages

python3
1442 projects

Projects that are alternatives of or similar to Recotour

Neural Collaborative Filtering
pytorch version of neural collaborative filtering
Stars: ✭ 263 (+87.86%)
Mutual labels:  jupyter-notebook, collaborative-filtering, matrix-factorization
Cornac
A Comparative Framework for Multimodal Recommender Systems
Stars: ✭ 308 (+120%)
Mutual labels:  collaborative-filtering, matrix-factorization
Daisyrec
A developing recommender system in pytorch. Algorithm: KNN, LFM, SLIM, NeuMF, FM, DeepFM, VAE and so on, which aims to fair comparison for recommender system benchmarks
Stars: ✭ 280 (+100%)
Mutual labels:  collaborative-filtering, matrix-factorization
Recsys19 hybridsvd
Accompanying code for reproducing experiments from the HybridSVD paper. Preprint is available at https://arxiv.org/abs/1802.06398.
Stars: ✭ 23 (-83.57%)
Mutual labels:  jupyter-notebook, collaborative-filtering
Awesome-Machine-Learning-Papers
📖Notes and remarks on Machine Learning related papers
Stars: ✭ 35 (-75%)
Mutual labels:  collaborative-filtering, matrix-factorization
Movielens
4 different recommendation engines for the MovieLens dataset.
Stars: ✭ 265 (+89.29%)
Mutual labels:  jupyter-notebook, collaborative-filtering
Recsys2019 deeplearning evaluation
This is the repository of our article published in RecSys 2019 "Are We Really Making Much Progress? A Worrying Analysis of Recent Neural Recommendation Approaches" and of several follow-up studies.
Stars: ✭ 780 (+457.14%)
Mutual labels:  collaborative-filtering, matrix-factorization
Recommendation.jl
Building recommender systems in Julia
Stars: ✭ 42 (-70%)
Mutual labels:  collaborative-filtering, matrix-factorization
Deeprec
An Open-source Toolkit for Deep Learning based Recommendation with Tensorflow.
Stars: ✭ 954 (+581.43%)
Mutual labels:  collaborative-filtering, matrix-factorization
Recoder
Large scale training of factorization models for Collaborative Filtering with PyTorch
Stars: ✭ 46 (-67.14%)
Mutual labels:  collaborative-filtering, matrix-factorization
Elliot
Comprehensive and Rigorous Framework for Reproducible Recommender Systems Evaluation
Stars: ✭ 49 (-65%)
Mutual labels:  collaborative-filtering, matrix-factorization
Recommendation-System-Baseline
Some common recommendation system baseline, with description and link.
Stars: ✭ 34 (-75.71%)
Mutual labels:  collaborative-filtering, matrix-factorization
Metarec
PyTorch Implementations For A Series Of Deep Learning-Based Recommendation Models (IN PROGRESS)
Stars: ✭ 120 (-14.29%)
Mutual labels:  collaborative-filtering, matrix-factorization
Librec
LibRec: A Leading Java Library for Recommender Systems, see
Stars: ✭ 3,045 (+2075%)
Mutual labels:  collaborative-filtering, matrix-factorization
recommender system with Python
recommender system tutorial with Python
Stars: ✭ 106 (-24.29%)
Mutual labels:  collaborative-filtering, matrix-factorization
Vae cf
Variational autoencoders for collaborative filtering
Stars: ✭ 386 (+175.71%)
Mutual labels:  jupyter-notebook, collaborative-filtering
matrix-completion
Lightweight Python library for in-memory matrix completion.
Stars: ✭ 94 (-32.86%)
Mutual labels:  collaborative-filtering, matrix-factorization
Quick-Data-Science-Experiments-2017
Quick-Data-Science-Experiments
Stars: ✭ 19 (-86.43%)
Mutual labels:  collaborative-filtering, matrix-factorization
Mrsr
MRSR - Matlab Recommender Systems Research is a software framework for evaluating collaborative filtering recommender systems in Matlab.
Stars: ✭ 13 (-90.71%)
Mutual labels:  collaborative-filtering, matrix-factorization
Expo Mf
Exposure Matrix Factorization: modeling user exposure in recommendation
Stars: ✭ 81 (-42.14%)
Mutual labels:  jupyter-notebook, matrix-factorization

RecoTour

This repo intends to be a tour through some recommendation algorithms in python using various dataset. Companion posts are:

  1. Recotour: a tour through recommendation algorithms in python

  2. RecoTour II: neural recommendation algorithms

  3. RecoTour III: Variational Autoencoders for Collaborative Filtering with Mxnet and Pytorch.

At the moment the datasets included are:

  1. the Ponpare coupon dataset, which corresponds to a coupon purchase prediction competition at Kaggle (i.e. recommending coupons to customers).
  2. the Amazon Reviews dataset, in particular the 5-core Movies and TV reviews

Each of the two datasets is used to illustrate a set of different techniques, although I explored a wider range of techniques with the Ponpare dataset and the corresponding notebooks are, in general, more detailed.

The core of the repo are the notebooks in each directory. They intend to be self-contained and in consequence, there is some of code repetition. The code is, of course, "notebook-oriented". The notebooks have plenty of explanations and references to relevant papers or packages. My intention was to focus on the code, but you will also find some math.

This is what you will find in the notebooks:

Ponpare

  1. Data processing, with a deep dive into feature engineering
  2. Most Popular recommendations (the baseline)
  3. Item-User similarity based recommendations
  4. kNN Collaborative Filtering recommendations
  5. GBM based recommendations using lightGBM with a tutorial on how to optimize gbms
  6. Non-Negative Matrix Factorization recommendations
  7. Factorization Machines (Steffen Rendle 2010) recommendations using xlearn
  8. Field Aware Factorization Machines (Yuchin Juan, et al, 2016) recommendations using xlearn
  9. Deep Learning based recommendations (Wide and Deep, Heng-Tze Cheng, et al, 2016) using pytorch

I have included a more modular (nicer looking) version of a possible final solution (described in Chapter16_final_solution_Recommendations.ipynb) in the directory final_recommendations.

In addition, I have included an illustration of how to use other evaluation metrics apart from the one shown in the notebooks ( the mean average precision or MAP) such as the Normalized Discounted Cumulative Gain (NDCG). This can be found in using_ncdg.py in the directory py_scripts.

Amazon

  1. Neural Collaborative Filtering (Xiangnan He et al., 2017)
  2. Neural Graph Collaborative Filtering (Wang Xiang et al. 2019)
  3. Variational Autoencoders for Collaborative Filtering (Dawen Liang et al,. 2018)

I hope the code here is useful to someone. If you have any idea on how to improve the content of the repo, or you want to contribute, let me know.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].