├── .gitignore ├── INSTRUCTIONS.md ├── README.md ├── Step00 ├── README.md └── Slide0_Notebook.ipynb ├── Step01 ├── .gitkeep └── README00.md ├── Step02 ├── README01.md ├── make_venv.sh └── requirements.txt ├── Step03 ├── README02.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step04 ├── README03.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step05 ├── README04.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step06 ├── README05.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step07 ├── README06.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step08 ├── README07.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step09 ├── README08.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step10 ├── README09.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step11 ├── README10.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step12 ├── README11.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step13 ├── README12.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step14 ├── README13.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step15 ├── README14.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step16 ├── README15.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step17 ├── README16.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step18 ├── README17.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step19 ├── README18.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step20 ├── README19.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step21 ├── README20.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── Step22 ├── README21.md ├── make_venv.sh ├── requirements.txt ├── titanic_model.py └── titanic_model.sh ├── create_branch.sh ├── create_instructions.sh ├── create_sqlite.py ├── data └── titanic.db ├── make_venv.sh ├── requirements.txt └── test_all.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/INSTRUCTIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/README.md -------------------------------------------------------------------------------- /Step00/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Step00/Slide0_Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step00/Slide0_Notebook.ipynb -------------------------------------------------------------------------------- /Step01/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Step01/README00.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Step02/README01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step02/README01.md -------------------------------------------------------------------------------- /Step02/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step02/make_venv.sh -------------------------------------------------------------------------------- /Step02/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step02/requirements.txt -------------------------------------------------------------------------------- /Step03/README02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step03/README02.md -------------------------------------------------------------------------------- /Step03/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step03/make_venv.sh -------------------------------------------------------------------------------- /Step03/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step03/requirements.txt -------------------------------------------------------------------------------- /Step03/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step03/titanic_model.py -------------------------------------------------------------------------------- /Step03/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step04/README03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step04/README03.md -------------------------------------------------------------------------------- /Step04/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step04/make_venv.sh -------------------------------------------------------------------------------- /Step04/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step04/requirements.txt -------------------------------------------------------------------------------- /Step04/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step04/titanic_model.py -------------------------------------------------------------------------------- /Step04/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step05/README04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step05/README04.md -------------------------------------------------------------------------------- /Step05/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step05/make_venv.sh -------------------------------------------------------------------------------- /Step05/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step05/requirements.txt -------------------------------------------------------------------------------- /Step05/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step05/titanic_model.py -------------------------------------------------------------------------------- /Step05/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step06/README05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step06/README05.md -------------------------------------------------------------------------------- /Step06/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step06/make_venv.sh -------------------------------------------------------------------------------- /Step06/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step06/requirements.txt -------------------------------------------------------------------------------- /Step06/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step06/titanic_model.py -------------------------------------------------------------------------------- /Step06/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step07/README06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step07/README06.md -------------------------------------------------------------------------------- /Step07/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step07/make_venv.sh -------------------------------------------------------------------------------- /Step07/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step07/requirements.txt -------------------------------------------------------------------------------- /Step07/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step07/titanic_model.py -------------------------------------------------------------------------------- /Step07/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step08/README07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step08/README07.md -------------------------------------------------------------------------------- /Step08/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step08/make_venv.sh -------------------------------------------------------------------------------- /Step08/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step08/requirements.txt -------------------------------------------------------------------------------- /Step08/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step08/titanic_model.py -------------------------------------------------------------------------------- /Step08/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step09/README08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step09/README08.md -------------------------------------------------------------------------------- /Step09/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step09/make_venv.sh -------------------------------------------------------------------------------- /Step09/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step09/requirements.txt -------------------------------------------------------------------------------- /Step09/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step09/titanic_model.py -------------------------------------------------------------------------------- /Step09/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step10/README09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step10/README09.md -------------------------------------------------------------------------------- /Step10/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step10/make_venv.sh -------------------------------------------------------------------------------- /Step10/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step10/requirements.txt -------------------------------------------------------------------------------- /Step10/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step10/titanic_model.py -------------------------------------------------------------------------------- /Step10/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step11/README10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step11/README10.md -------------------------------------------------------------------------------- /Step11/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step11/make_venv.sh -------------------------------------------------------------------------------- /Step11/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step11/requirements.txt -------------------------------------------------------------------------------- /Step11/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step11/titanic_model.py -------------------------------------------------------------------------------- /Step11/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step12/README11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step12/README11.md -------------------------------------------------------------------------------- /Step12/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step12/make_venv.sh -------------------------------------------------------------------------------- /Step12/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step12/requirements.txt -------------------------------------------------------------------------------- /Step12/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step12/titanic_model.py -------------------------------------------------------------------------------- /Step12/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step13/README12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step13/README12.md -------------------------------------------------------------------------------- /Step13/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step13/make_venv.sh -------------------------------------------------------------------------------- /Step13/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step13/requirements.txt -------------------------------------------------------------------------------- /Step13/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step13/titanic_model.py -------------------------------------------------------------------------------- /Step13/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step14/README13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step14/README13.md -------------------------------------------------------------------------------- /Step14/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step14/make_venv.sh -------------------------------------------------------------------------------- /Step14/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step14/requirements.txt -------------------------------------------------------------------------------- /Step14/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step14/titanic_model.py -------------------------------------------------------------------------------- /Step14/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step15/README14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step15/README14.md -------------------------------------------------------------------------------- /Step15/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step15/make_venv.sh -------------------------------------------------------------------------------- /Step15/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step15/requirements.txt -------------------------------------------------------------------------------- /Step15/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step15/titanic_model.py -------------------------------------------------------------------------------- /Step15/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step16/README15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step16/README15.md -------------------------------------------------------------------------------- /Step16/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step16/make_venv.sh -------------------------------------------------------------------------------- /Step16/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step16/requirements.txt -------------------------------------------------------------------------------- /Step16/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step16/titanic_model.py -------------------------------------------------------------------------------- /Step16/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step17/README16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step17/README16.md -------------------------------------------------------------------------------- /Step17/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step17/make_venv.sh -------------------------------------------------------------------------------- /Step17/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step17/requirements.txt -------------------------------------------------------------------------------- /Step17/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step17/titanic_model.py -------------------------------------------------------------------------------- /Step17/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step18/README17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step18/README17.md -------------------------------------------------------------------------------- /Step18/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step18/make_venv.sh -------------------------------------------------------------------------------- /Step18/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step18/requirements.txt -------------------------------------------------------------------------------- /Step18/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step18/titanic_model.py -------------------------------------------------------------------------------- /Step18/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step19/README18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step19/README18.md -------------------------------------------------------------------------------- /Step19/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step19/make_venv.sh -------------------------------------------------------------------------------- /Step19/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step19/requirements.txt -------------------------------------------------------------------------------- /Step19/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step19/titanic_model.py -------------------------------------------------------------------------------- /Step19/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step20/README19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step20/README19.md -------------------------------------------------------------------------------- /Step20/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step20/make_venv.sh -------------------------------------------------------------------------------- /Step20/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step20/requirements.txt -------------------------------------------------------------------------------- /Step20/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step20/titanic_model.py -------------------------------------------------------------------------------- /Step20/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step21/README20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step21/README20.md -------------------------------------------------------------------------------- /Step21/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step21/make_venv.sh -------------------------------------------------------------------------------- /Step21/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step21/requirements.txt -------------------------------------------------------------------------------- /Step21/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step21/titanic_model.py -------------------------------------------------------------------------------- /Step21/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /Step22/README21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step22/README21.md -------------------------------------------------------------------------------- /Step22/make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step22/make_venv.sh -------------------------------------------------------------------------------- /Step22/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step22/requirements.txt -------------------------------------------------------------------------------- /Step22/titanic_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/Step22/titanic_model.py -------------------------------------------------------------------------------- /Step22/titanic_model.sh: -------------------------------------------------------------------------------- 1 | python3.8 ./titanic_model.py $1 2 | -------------------------------------------------------------------------------- /create_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/create_branch.sh -------------------------------------------------------------------------------- /create_instructions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/create_instructions.sh -------------------------------------------------------------------------------- /create_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/create_sqlite.py -------------------------------------------------------------------------------- /data/titanic.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/data/titanic.db -------------------------------------------------------------------------------- /make_venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/make_venv.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xLaszlo/CQ4DS-notebook-sklearn-refactoring-exercise/HEAD/test_all.sh --------------------------------------------------------------------------------