GitXplorerGitXplorer
l

email-classification-challenge

public
2 stars
1 forks
8 issues

Commits

List of commits on branch master.
Unverified
1fbfb8f69e51cb946bb04bbb38e5c3402b681421

Add get_feature_names() to VectorizerManager

llouismartin committed 8 years ago
Unverified
836cbf8f379ed486b2b83b0f90e79274c5d60c6a

Update loulou's notebook

llouismartin committed 8 years ago
Unverified
bab47f8f46dc01f22579dba541f6a9b11385a5f4

Minor changes

llouismartin committed 8 years ago
Unverified
924ac6b2ba1857150198182dad6a3cc67d363a9d

Improve submission names

llouismartin committed 8 years ago
Unverified
4d1fb0b15ff3adcd381c7ec4b7f89e90d2255268

Refactor VectorizerManager.vectorize_x()

llouismartin committed 8 years ago
Unverified
998f80c5a5045e8993f9e33b5fabaa99add15b6c

Add enrich_emails support for test set

llouismartin committed 8 years ago

README

The README file for this repository.

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")