louismartin / email-classification-challenge

Altegard challenge in collaboration w/ Linagora
https://inclass.kaggle.com/c/master-data-science-mva-data-competition-2017
2 stars 1 forks source link

Usage

Python version

To make this project work, you need python 3.5.

Requirements

You need to install the requirements:

pip install -r requirements.txt

NLTK

You also need to download the nltk stopwords and english words. Open a python console and type:

import nltk
nltk.download("stopwords")
nltk.download("words")
nltk.download("wordnet")