├── .gitignore ├── README.md ├── boston-housing ├── boston_housing.html ├── boston_housing.ipynb └── housing.csv ├── customer-segments ├── README.md ├── customer_segments.html ├── customer_segments.ipynb ├── customers.csv ├── renders.py └── renders.pyc ├── smartcab ├── README.md ├── SmartCabReport.md ├── SmartCabReport.pdf └── smartcab │ ├── __init__.py │ ├── agent_original.py │ ├── agent_smart.py │ ├── environment.py │ ├── environment.pyc │ ├── images │ ├── car-black.png │ ├── car-blue.png │ ├── car-cyan.png │ ├── car-green.png │ ├── car-magenta.png │ ├── car-orange.png │ ├── car-red.png │ ├── car-white.png │ └── car-yellow.png │ ├── planner.py │ ├── planner.pyc │ ├── simulator.py │ └── simulator.pyc ├── student-intervention ├── student-data.csv ├── student_intervention.html └── student_intervention.ipynb └── titanic-survival ├── Titanic_Survival_Exploration.html ├── Titanic_Survival_Exploration.ipynb ├── test.csv └── train.csv /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/README.md -------------------------------------------------------------------------------- /boston-housing/boston_housing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/boston-housing/boston_housing.html -------------------------------------------------------------------------------- /boston-housing/boston_housing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/boston-housing/boston_housing.ipynb -------------------------------------------------------------------------------- /boston-housing/housing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/boston-housing/housing.csv -------------------------------------------------------------------------------- /customer-segments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/customer-segments/README.md -------------------------------------------------------------------------------- /customer-segments/customer_segments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/customer-segments/customer_segments.html -------------------------------------------------------------------------------- /customer-segments/customer_segments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/customer-segments/customer_segments.ipynb -------------------------------------------------------------------------------- /customer-segments/customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/customer-segments/customers.csv -------------------------------------------------------------------------------- /customer-segments/renders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/customer-segments/renders.py -------------------------------------------------------------------------------- /customer-segments/renders.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/customer-segments/renders.pyc -------------------------------------------------------------------------------- /smartcab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/README.md -------------------------------------------------------------------------------- /smartcab/SmartCabReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/SmartCabReport.md -------------------------------------------------------------------------------- /smartcab/SmartCabReport.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/SmartCabReport.pdf -------------------------------------------------------------------------------- /smartcab/smartcab/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smartcab/smartcab/agent_original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/agent_original.py -------------------------------------------------------------------------------- /smartcab/smartcab/agent_smart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/agent_smart.py -------------------------------------------------------------------------------- /smartcab/smartcab/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/environment.py -------------------------------------------------------------------------------- /smartcab/smartcab/environment.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/environment.pyc -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-black.png -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-blue.png -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-cyan.png -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-green.png -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-magenta.png -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-orange.png -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-red.png -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-white.png -------------------------------------------------------------------------------- /smartcab/smartcab/images/car-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/images/car-yellow.png -------------------------------------------------------------------------------- /smartcab/smartcab/planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/planner.py -------------------------------------------------------------------------------- /smartcab/smartcab/planner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/planner.pyc -------------------------------------------------------------------------------- /smartcab/smartcab/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/simulator.py -------------------------------------------------------------------------------- /smartcab/smartcab/simulator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/smartcab/smartcab/simulator.pyc -------------------------------------------------------------------------------- /student-intervention/student-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/student-intervention/student-data.csv -------------------------------------------------------------------------------- /student-intervention/student_intervention.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/student-intervention/student_intervention.html -------------------------------------------------------------------------------- /student-intervention/student_intervention.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/student-intervention/student_intervention.ipynb -------------------------------------------------------------------------------- /titanic-survival/Titanic_Survival_Exploration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/titanic-survival/Titanic_Survival_Exploration.html -------------------------------------------------------------------------------- /titanic-survival/Titanic_Survival_Exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/titanic-survival/Titanic_Survival_Exploration.ipynb -------------------------------------------------------------------------------- /titanic-survival/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/titanic-survival/test.csv -------------------------------------------------------------------------------- /titanic-survival/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codediodeio/machine-learning-nanodegree/HEAD/titanic-survival/train.csv --------------------------------------------------------------------------------