├── .gitignore ├── README.md ├── Vagrantfile ├── bin ├── bootstrap.sh └── launch-jupyter.sh └── notes ├── 0.0_intro_ml_is_rox.md ├── 1.1_sl_1_-_decision_trees.md ├── 1.2_sl_2_-_regression_and_classification.md ├── 1.3_sl_3_-_neural_networks.md ├── 1.4_sl_4_-_instance_base_learning.md ├── 1.5_sl_5_-_ensemble_learning_boosting.md └── 1.6_sl_6_-_kernel_methods_and_svm.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/bin/bootstrap.sh -------------------------------------------------------------------------------- /bin/launch-jupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/bin/launch-jupyter.sh -------------------------------------------------------------------------------- /notes/0.0_intro_ml_is_rox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/notes/0.0_intro_ml_is_rox.md -------------------------------------------------------------------------------- /notes/1.1_sl_1_-_decision_trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/notes/1.1_sl_1_-_decision_trees.md -------------------------------------------------------------------------------- /notes/1.2_sl_2_-_regression_and_classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/notes/1.2_sl_2_-_regression_and_classification.md -------------------------------------------------------------------------------- /notes/1.3_sl_3_-_neural_networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/notes/1.3_sl_3_-_neural_networks.md -------------------------------------------------------------------------------- /notes/1.4_sl_4_-_instance_base_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/notes/1.4_sl_4_-_instance_base_learning.md -------------------------------------------------------------------------------- /notes/1.5_sl_5_-_ensemble_learning_boosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/notes/1.5_sl_5_-_ensemble_learning_boosting.md -------------------------------------------------------------------------------- /notes/1.6_sl_6_-_kernel_methods_and_svm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nehalecky/cs-7641-Machine-Learning/HEAD/notes/1.6_sl_6_-_kernel_methods_and_svm.md --------------------------------------------------------------------------------