├── .gitignore ├── LICENSE ├── README.md ├── email_app.py ├── ml ├── __init__.py ├── classifier.py ├── ml_util.py ├── summarizer.py ├── training_set_util.py └── unicode_fixer.py ├── outlook ├── __init__.py └── outlook_parser.py ├── setup_training_set.py └── templates ├── index.html └── result.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/README.md -------------------------------------------------------------------------------- /email_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/email_app.py -------------------------------------------------------------------------------- /ml/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ajayb' 2 | -------------------------------------------------------------------------------- /ml/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/ml/classifier.py -------------------------------------------------------------------------------- /ml/ml_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/ml/ml_util.py -------------------------------------------------------------------------------- /ml/summarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/ml/summarizer.py -------------------------------------------------------------------------------- /ml/training_set_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/ml/training_set_util.py -------------------------------------------------------------------------------- /ml/unicode_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/ml/unicode_fixer.py -------------------------------------------------------------------------------- /outlook/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'ajayb' 2 | -------------------------------------------------------------------------------- /outlook/outlook_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/outlook/outlook_parser.py -------------------------------------------------------------------------------- /setup_training_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/setup_training_set.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajaybhat/email-categorization/HEAD/templates/result.html --------------------------------------------------------------------------------