├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── k8s ├── cluster-config.yaml ├── deployment.yaml └── service.yaml ├── model.pkl ├── requirements.txt ├── salary.csv ├── salary_prediction.py ├── screenshots ├── gai-demo-web.png └── gai-demo.png └── templates └── index.html /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/app.py -------------------------------------------------------------------------------- /k8s/cluster-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/k8s/cluster-config.yaml -------------------------------------------------------------------------------- /k8s/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/k8s/deployment.yaml -------------------------------------------------------------------------------- /k8s/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/k8s/service.yaml -------------------------------------------------------------------------------- /model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/model.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /salary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/salary.csv -------------------------------------------------------------------------------- /salary_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/salary_prediction.py -------------------------------------------------------------------------------- /screenshots/gai-demo-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/screenshots/gai-demo-web.png -------------------------------------------------------------------------------- /screenshots/gai-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/screenshots/gai-demo.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PapiHack/gai-demo/HEAD/templates/index.html --------------------------------------------------------------------------------