├── .gitignore ├── README.md ├── app.py ├── environment.yml ├── nginx_production_ml ├── production_ml.service ├── test_parallel_requests.sh └── uwsgi.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkous/production_ml/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkous/production_ml/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkous/production_ml/HEAD/app.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkous/production_ml/HEAD/environment.yml -------------------------------------------------------------------------------- /nginx_production_ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkous/production_ml/HEAD/nginx_production_ml -------------------------------------------------------------------------------- /production_ml.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkous/production_ml/HEAD/production_ml.service -------------------------------------------------------------------------------- /test_parallel_requests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkous/production_ml/HEAD/test_parallel_requests.sh -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harkous/production_ml/HEAD/uwsgi.ini --------------------------------------------------------------------------------