├── Chapter-01 ├── README.md ├── jupyternotebook │ ├── Dockerfile │ ├── build-notebook.sh │ └── push-notebook.sh ├── matplotlib │ ├── Dockerfile │ ├── build-notebook.sh │ └── push-notebook.sh ├── numpy │ ├── Dockerfile │ ├── build-notebook.sh │ └── push-notebook.sh ├── pandas │ ├── Dockerfile │ ├── build-notebook.sh │ └── push-notebook.sh ├── scikit-audiolab │ ├── Dockerfile │ ├── build-notebook.sh │ └── push-notebook.sh ├── scikit-image │ ├── Dockerfile │ ├── build-notebook.sh │ └── push-notebook.sh ├── scikit-learn │ ├── Dockerfile │ ├── build-notebook.sh │ └── push-notebook.sh └── simplecv │ ├── Dockerfile │ ├── build-notebook.sh │ └── push-notebook.sh ├── Chapter-02 └── README.md ├── Chapter-03 └── README.md ├── LICENSE ├── README.md └── setup_workstation ├── macosx └── install_dependencies.sh ├── ubuntu ├── install_dependencies.sh └── install_docker_ce.sh └── windows └── install_dependencies.bat /Chapter-01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/README.md -------------------------------------------------------------------------------- /Chapter-01/jupyternotebook/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/jupyternotebook/Dockerfile -------------------------------------------------------------------------------- /Chapter-01/jupyternotebook/build-notebook.sh: -------------------------------------------------------------------------------- 1 | docker build . -t mohitsethi/jupyternotebook:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/jupyternotebook/push-notebook.sh: -------------------------------------------------------------------------------- 1 | docker push mohitsethi/jupyternotebook:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/matplotlib/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/matplotlib/Dockerfile -------------------------------------------------------------------------------- /Chapter-01/matplotlib/build-notebook.sh: -------------------------------------------------------------------------------- 1 | docker build . -t mohitsethi/python-matplotlib:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/matplotlib/push-notebook.sh: -------------------------------------------------------------------------------- 1 | docker push mohitsethi/python-matplotlib:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/numpy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/numpy/Dockerfile -------------------------------------------------------------------------------- /Chapter-01/numpy/build-notebook.sh: -------------------------------------------------------------------------------- 1 | docker build . -t mohitsethi/python-numpy:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/numpy/push-notebook.sh: -------------------------------------------------------------------------------- 1 | docker push mohitsethi/python-numpy:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/pandas/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/pandas/Dockerfile -------------------------------------------------------------------------------- /Chapter-01/pandas/build-notebook.sh: -------------------------------------------------------------------------------- 1 | docker build . -t mohitsethi/python-pandas:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/pandas/push-notebook.sh: -------------------------------------------------------------------------------- 1 | docker push mohitsethi/python-pandas:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/scikit-audiolab/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/scikit-audiolab/Dockerfile -------------------------------------------------------------------------------- /Chapter-01/scikit-audiolab/build-notebook.sh: -------------------------------------------------------------------------------- 1 | docker build . -t mohitsethi/python-scikit-audiolab:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/scikit-audiolab/push-notebook.sh: -------------------------------------------------------------------------------- 1 | docker push mohitsethi/python-scikit-audiolab:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/scikit-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/scikit-image/Dockerfile -------------------------------------------------------------------------------- /Chapter-01/scikit-image/build-notebook.sh: -------------------------------------------------------------------------------- 1 | docker build . -t mohitsethi/python-scikit-image:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/scikit-image/push-notebook.sh: -------------------------------------------------------------------------------- 1 | docker push mohitsethi/python-scikit-image:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/scikit-learn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/scikit-learn/Dockerfile -------------------------------------------------------------------------------- /Chapter-01/scikit-learn/build-notebook.sh: -------------------------------------------------------------------------------- 1 | docker build . -t mohitsethi/python-scikit-learn:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/scikit-learn/push-notebook.sh: -------------------------------------------------------------------------------- 1 | docker push mohitsethi/python-scikit-learn:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/simplecv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-01/simplecv/Dockerfile -------------------------------------------------------------------------------- /Chapter-01/simplecv/build-notebook.sh: -------------------------------------------------------------------------------- 1 | docker build . -t mohitsethi/simplecv:latest 2 | -------------------------------------------------------------------------------- /Chapter-01/simplecv/push-notebook.sh: -------------------------------------------------------------------------------- 1 | docker push mohitsethi/simplecv:latest 2 | -------------------------------------------------------------------------------- /Chapter-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-02/README.md -------------------------------------------------------------------------------- /Chapter-03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/Chapter-03/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/README.md -------------------------------------------------------------------------------- /setup_workstation/macosx/install_dependencies.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup_workstation/ubuntu/install_dependencies.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup_workstation/ubuntu/install_docker_ce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Python-Data-Mining-Cookbook/HEAD/setup_workstation/ubuntu/install_docker_ce.sh -------------------------------------------------------------------------------- /setup_workstation/windows/install_dependencies.bat: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------