├── .gitignore ├── LICENSE ├── README.md ├── environment.yml └── materials ├── GoalFigure.png ├── MLpipeline.png ├── day_1 ├── Data_Practice_DecisionTrees.dat ├── Data_Practice_DecisionTrees.dat.zip ├── Day-1_notebook.ipynb ├── DecisionTreePractice.pdf ├── Fig1.png └── day1_thumbnailr.png ├── day_2 ├── CollML_testdataset_features.dat ├── CollML_testdataset_labels.dat ├── Day-2_notebook.ipynb ├── Day2_testdataset.zip ├── banana_dataset.csv ├── day2_thumbnail.png └── syntheticDataset.png ├── day_3 ├── Day-3_notebook.ipynb ├── Regression_Exercise_dataset.dat ├── Regression_Exercise_dataset.dat.zip └── day3_thumbnail.png └── qcbCollaboratory_logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/environment.yml -------------------------------------------------------------------------------- /materials/GoalFigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/GoalFigure.png -------------------------------------------------------------------------------- /materials/MLpipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/MLpipeline.png -------------------------------------------------------------------------------- /materials/day_1/Data_Practice_DecisionTrees.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_1/Data_Practice_DecisionTrees.dat -------------------------------------------------------------------------------- /materials/day_1/Data_Practice_DecisionTrees.dat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_1/Data_Practice_DecisionTrees.dat.zip -------------------------------------------------------------------------------- /materials/day_1/Day-1_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_1/Day-1_notebook.ipynb -------------------------------------------------------------------------------- /materials/day_1/DecisionTreePractice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_1/DecisionTreePractice.pdf -------------------------------------------------------------------------------- /materials/day_1/Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_1/Fig1.png -------------------------------------------------------------------------------- /materials/day_1/day1_thumbnailr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_1/day1_thumbnailr.png -------------------------------------------------------------------------------- /materials/day_2/CollML_testdataset_features.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_2/CollML_testdataset_features.dat -------------------------------------------------------------------------------- /materials/day_2/CollML_testdataset_labels.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_2/CollML_testdataset_labels.dat -------------------------------------------------------------------------------- /materials/day_2/Day-2_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_2/Day-2_notebook.ipynb -------------------------------------------------------------------------------- /materials/day_2/Day2_testdataset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_2/Day2_testdataset.zip -------------------------------------------------------------------------------- /materials/day_2/banana_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_2/banana_dataset.csv -------------------------------------------------------------------------------- /materials/day_2/day2_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_2/day2_thumbnail.png -------------------------------------------------------------------------------- /materials/day_2/syntheticDataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_2/syntheticDataset.png -------------------------------------------------------------------------------- /materials/day_3/Day-3_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_3/Day-3_notebook.ipynb -------------------------------------------------------------------------------- /materials/day_3/Regression_Exercise_dataset.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_3/Regression_Exercise_dataset.dat -------------------------------------------------------------------------------- /materials/day_3/Regression_Exercise_dataset.dat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_3/Regression_Exercise_dataset.dat.zip -------------------------------------------------------------------------------- /materials/day_3/day3_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/day_3/day3_thumbnail.png -------------------------------------------------------------------------------- /materials/qcbCollaboratory_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QCB-Collaboratory/W17.MachineLearning/HEAD/materials/qcbCollaboratory_logo.png --------------------------------------------------------------------------------