├── .gitignore ├── README.md ├── data └── winequality-red.csv ├── docker-compose.yml ├── docker ├── jupyter │ ├── Dockerfile │ └── requirements.txt └── postgres │ ├── Dockerfile │ └── initdb.sql └── ipynb ├── examples.ipynb └── kill-pg-processes.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/README.md -------------------------------------------------------------------------------- /data/winequality-red.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/data/winequality-red.csv -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/jupyter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/docker/jupyter/Dockerfile -------------------------------------------------------------------------------- /docker/jupyter/requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2-binary 2 | catboost 3 | -------------------------------------------------------------------------------- /docker/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/docker/postgres/Dockerfile -------------------------------------------------------------------------------- /docker/postgres/initdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/docker/postgres/initdb.sql -------------------------------------------------------------------------------- /ipynb/examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/ipynb/examples.ipynb -------------------------------------------------------------------------------- /ipynb/kill-pg-processes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/data-science-project-template/HEAD/ipynb/kill-pg-processes.ipynb --------------------------------------------------------------------------------