├── .github └── ISSUE_TEMPLATE │ └── question-request.md ├── .gitignore ├── LICENSE ├── README.md ├── T10W13 └── README.md ├── T1W3 ├── README.md ├── alice_knn.py ├── assets │ └── knn_bst.jpg ├── bob_knn.py └── q1.py ├── T2W4 ├── README.md ├── data │ ├── iris.csv │ └── iris.names └── dtc.py ├── T3W5 ├── Intro_to_Support_Vector_Machines.ipynb ├── README.md ├── data │ ├── iris.csv │ └── iris.names └── linreg.py ├── T4aW6 ├── README.md └── Tutorial_4_FAQ.pdf ├── T4bW7 └── README.md ├── T5W8 └── README.md ├── T6W9 └── README.md ├── T7W10 └── README.md ├── T8W11 └── README.md ├── T9W12 └── README.md └── misc └── CS3244_Midterm_Cheatsheet.pdf /.github/ISSUE_TEMPLATE/question-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/.github/ISSUE_TEMPLATE/question-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/README.md -------------------------------------------------------------------------------- /T10W13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T10W13/README.md -------------------------------------------------------------------------------- /T1W3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T1W3/README.md -------------------------------------------------------------------------------- /T1W3/alice_knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T1W3/alice_knn.py -------------------------------------------------------------------------------- /T1W3/assets/knn_bst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T1W3/assets/knn_bst.jpg -------------------------------------------------------------------------------- /T1W3/bob_knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T1W3/bob_knn.py -------------------------------------------------------------------------------- /T1W3/q1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T1W3/q1.py -------------------------------------------------------------------------------- /T2W4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T2W4/README.md -------------------------------------------------------------------------------- /T2W4/data/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T2W4/data/iris.csv -------------------------------------------------------------------------------- /T2W4/data/iris.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T2W4/data/iris.names -------------------------------------------------------------------------------- /T2W4/dtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T2W4/dtc.py -------------------------------------------------------------------------------- /T3W5/Intro_to_Support_Vector_Machines.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T3W5/Intro_to_Support_Vector_Machines.ipynb -------------------------------------------------------------------------------- /T3W5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T3W5/README.md -------------------------------------------------------------------------------- /T3W5/data/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T3W5/data/iris.csv -------------------------------------------------------------------------------- /T3W5/data/iris.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T3W5/data/iris.names -------------------------------------------------------------------------------- /T3W5/linreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T3W5/linreg.py -------------------------------------------------------------------------------- /T4aW6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T4aW6/README.md -------------------------------------------------------------------------------- /T4aW6/Tutorial_4_FAQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T4aW6/Tutorial_4_FAQ.pdf -------------------------------------------------------------------------------- /T4bW7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T4bW7/README.md -------------------------------------------------------------------------------- /T5W8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T5W8/README.md -------------------------------------------------------------------------------- /T6W9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T6W9/README.md -------------------------------------------------------------------------------- /T7W10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T7W10/README.md -------------------------------------------------------------------------------- /T8W11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T8W11/README.md -------------------------------------------------------------------------------- /T9W12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/T9W12/README.md -------------------------------------------------------------------------------- /misc/CS3244_Midterm_Cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rish-16/CS3244-Tutorial-Material/HEAD/misc/CS3244_Midterm_Cheatsheet.pdf --------------------------------------------------------------------------------