├── .gitignore ├── MIT-LICENSE ├── README.md ├── helpers.py ├── main.py ├── part_2.py ├── query.py ├── requirements.txt └── split_emails.csv /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | notes -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/ml-email-clustering/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/ml-email-clustering/HEAD/README.md -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/ml-email-clustering/HEAD/helpers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/ml-email-clustering/HEAD/main.py -------------------------------------------------------------------------------- /part_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/ml-email-clustering/HEAD/part_2.py -------------------------------------------------------------------------------- /query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/ml-email-clustering/HEAD/query.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/ml-email-clustering/HEAD/requirements.txt -------------------------------------------------------------------------------- /split_emails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthdm/ml-email-clustering/HEAD/split_emails.csv --------------------------------------------------------------------------------