├── .gitignore ├── Procfile ├── mlapi.py ├── requirements.txt ├── rfmodel.pkl └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | fastml 3 | sample.json -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicknochnack/CodeThat-FastML/HEAD/Procfile -------------------------------------------------------------------------------- /mlapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicknochnack/CodeThat-FastML/HEAD/mlapi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicknochnack/CodeThat-FastML/HEAD/requirements.txt -------------------------------------------------------------------------------- /rfmodel.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicknochnack/CodeThat-FastML/HEAD/rfmodel.pkl -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.7 --------------------------------------------------------------------------------