All Projects → mquad → Sars_tutorial

mquad / Sars_tutorial

Licence: mit
Repository for the tutorial on Sequence-Aware Recommender Systems held at TheWebConf 2019 and ACM RecSys 2018

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Sars tutorial

Pytorch Sentiment Analysis
Tutorials on getting started with PyTorch and TorchText for sentiment analysis.
Stars: ✭ 3,209 (+902.81%)
Mutual labels:  jupyter-notebook, tutorial, rnn
Tsai
Time series Timeseries Deep Learning Pytorch fastai - State-of-the-art Deep Learning with Time Series and Sequences in Pytorch / fastai
Stars: ✭ 407 (+27.19%)
Mutual labels:  jupyter-notebook, sequence, rnn
Pytorch Seq2seq
Tutorials on implementing a few sequence-to-sequence (seq2seq) models with PyTorch and TorchText.
Stars: ✭ 3,418 (+968.13%)
Mutual labels:  jupyter-notebook, tutorial, rnn
Machine Learning
My Attempt(s) In The World Of ML/DL....
Stars: ✭ 78 (-75.62%)
Mutual labels:  jupyter-notebook, tutorial, rnn
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (+7.81%)
Mutual labels:  jupyter-notebook, tutorial, rnn
Pytorch Pos Tagging
A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.
Stars: ✭ 96 (-70%)
Mutual labels:  jupyter-notebook, tutorial, rnn
Deeplearningcoursecodes
Notes, Codes, and Tutorials for the Deep Learning Course <which I taught at ChinaHadoop>
Stars: ✭ 241 (-24.69%)
Mutual labels:  jupyter-notebook, tutorial
Dl tutorial
Tutorials for deep learning
Stars: ✭ 247 (-22.81%)
Mutual labels:  jupyter-notebook, tutorial
Understanding Nn
Tensorflow tutorial for various Deep Neural Network visualization techniques
Stars: ✭ 261 (-18.44%)
Mutual labels:  jupyter-notebook, tutorial
Deeplearning.ai Assignments
Stars: ✭ 268 (-16.25%)
Mutual labels:  jupyter-notebook, rnn
Datavisualization
Tutorials on visualizing data using python packages like bokeh, plotly, seaborn and igraph
Stars: ✭ 234 (-26.87%)
Mutual labels:  jupyter-notebook, tutorial
Lstm Human Activity Recognition
Human Activity Recognition example using TensorFlow on smartphone sensors dataset and an LSTM RNN. Classifying the type of movement amongst six activity categories - Guillaume Chevalier
Stars: ✭ 2,943 (+819.69%)
Mutual labels:  jupyter-notebook, rnn
Pytorch Image Classification
Tutorials on how to implement a few key architectures for image classification using PyTorch and TorchVision.
Stars: ✭ 272 (-15%)
Mutual labels:  jupyter-notebook, tutorial
Deepnlp Models Pytorch
Pytorch implementations of various Deep NLP models in cs-224n(Stanford Univ)
Stars: ✭ 2,760 (+762.5%)
Mutual labels:  jupyter-notebook, rnn
Kitti tutorial
Tutorial for using Kitti dataset easily
Stars: ✭ 235 (-26.56%)
Mutual labels:  jupyter-notebook, tutorial
Deep Learning Keras Tensorflow
Introduction to Deep Neural Networks with Keras and Tensorflow
Stars: ✭ 2,868 (+796.25%)
Mutual labels:  jupyter-notebook, tutorial
Cryptocurrency Analysis Python
Open-Source Tutorial For Analyzing and Visualizing Cryptocurrency Data
Stars: ✭ 278 (-13.12%)
Mutual labels:  jupyter-notebook, tutorial
Generative models tutorial with demo
Generative Models Tutorial with Demo: Bayesian Classifier Sampling, Variational Auto Encoder (VAE), Generative Adversial Networks (GANs), Popular GANs Architectures, Auto-Regressive Models, Important Generative Model Papers, Courses, etc..
Stars: ✭ 276 (-13.75%)
Mutual labels:  jupyter-notebook, tutorial
Pytorch Lesson Zh
pytorch 包教不包会
Stars: ✭ 279 (-12.81%)
Mutual labels:  jupyter-notebook, tutorial
Scikit Learn Videos
Jupyter notebooks from the scikit-learn video series
Stars: ✭ 3,254 (+916.88%)
Mutual labels:  jupyter-notebook, tutorial

Tutorial on Sequence-Aware Recommender Systems

This repository contains the material used in the hands-on session of the tutorials on Sequence-Aware Recommenders we gave at TheWebConf 2019 and ACM RecSys 2018.

ACM CSUR Paper and TheWebConf 2019 Slides

ACM Computing Surveys (CSUR) Paper

ACM DL Author-ize serviceSequence-Aware Recommender Systems
Massimo Quadrana, Paolo Cremonesi, Dietmar Jannach
ACM Computing Surveys (CSUR), 2018

TheWebConf 2019 Slides

  1. Introduction
  2. Algorithms
  3. Evaluation

Running the code

You have two options to run the code contained in this repository:

  1. Setup a new environment on your local machine and run the code locally (highly recommended).
  2. Launch a new Binder instance by clicking on this badge Binder.

While we all know that setting up a new local environment is a slightly tedious process, Binder instances have strict resource limits (1-2GB of memory, max 100 concurrent users per repository). Also beware that Binder sessions automatically expire after 10 minutes of inactivity!
So we highly recommend to set up a new local environment in advance by following the Setup instructions.

Setup instructions

  1. First of all, clone this project to your local machine:

    git clone https://github.com/mquad/sars_tutorial.git
    
  2. Now you need to set up a new python3 environment. We will use Anaconda/Miniconda for doing so. If you don't have Anaconda/Minicoda already installed on your machine, click here to download Miniconda or Anaconda (Python 3 version).

  3. After that, install the environment for this hands-on by running:

    cd sars_tutorial/
    conda env create --file environment.yml
    
  4. (Miniconda users only) If you choose to install Miniconda before, you will now have to install Jupyter Notebook on your machine, just by running conda install jupyter. You can do it in your main python environment (necessarily in the srs env), as long as you setup the kernel as explained after. Anaconda users should already have Jupyter Notebook installed, so they can skip this step.

  5. Then activate the environment with source activate srs or conda activate srs, and install a new iptyhon kernel by running:

    python -m ipykernel install --name srs
    

    If you get "Permission denied" error with the above command, try with

    python -m ipykernel install --name srs --user
    
  6. Finally, launch the Jupyter Notebook with

    jupyter notebook --port=8888
    

and open it your browser at the address localhost:8888. (Beware, if port 8888 is already taken by another service, Jupyter Notebook will automatically open on a different one. Check out the startup log!).

Running the notebooks

The notebooks used in this hands-on are listed in the main directory of this project, as shown below:

Click on the name of the notebook to open it in a new window. The name of each running notebook is highlighted in green (in the screen above, the notebook 00_TopPopular is the only one running).

Before starting to execute the notebook cells, you have to ensure that the kernel is properly set to srs, like in the screen below:

If it's not your case, change the kernel to srs by clicking on Kernel > Change kernel > srs in the menu bar, as shown below:

NOTE: this requires the installation of the srs kernel, as explained in the Setup instructions.

You can now start running the cells in the notebook! Yay!

Acknowledgments

We want to sincerely thank Umberto Di Fabrizio for the help in the development of this repository back when he was a MSc student at Politecnico di Milano. Great job Umberto!

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].