Home

Awesome

Deep Learning Recommender Systems

A repository to experiment building recommender systems using apache MXNet.

Repo structure

Running the code

  1. Clone this repo and cd to root
  2. Download, unzip and store the ratings data:
    1. $ mkdir data
    2. $ wget 'http://files.grouplens.org/datasets/movielens/ml-1m.zip'
    3. $ unzip -a ml-1m.zip
    4. $ mv ./ml-1m/ratings.dat ./data/
    5. $ rm -rf ml-1m
    6. $ rm ml-1m.zip
  3. Train the model: $ python recsys.py

ToDo