├── .gitignore ├── Dockerfile ├── README.md ├── download_nltk.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylegallatin/ml-python-cookbook-runner/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylegallatin/ml-python-cookbook-runner/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylegallatin/ml-python-cookbook-runner/HEAD/README.md -------------------------------------------------------------------------------- /download_nltk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylegallatin/ml-python-cookbook-runner/HEAD/download_nltk.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylegallatin/ml-python-cookbook-runner/HEAD/requirements.txt --------------------------------------------------------------------------------