├── .gitignore ├── Makefile ├── README.md ├── main.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv* 2 | .data* 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyashankar/create-ml-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyashankar/create-ml-app/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyashankar/create-ml-app/HEAD/main.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyashankar/create-ml-app/HEAD/setup.py --------------------------------------------------------------------------------