├── LICENSE ├── README.md ├── Section1 ├── inputs.csv ├── labels.csv └── linear_regression.cpp ├── Section3 └── k_means.cpp ├── Section4 └── k_means.cpp └── Section5 ├── Thumbs.db ├── classifier.xml ├── face_detection.cpp └── image.bmp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/README.md -------------------------------------------------------------------------------- /Section1/inputs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section1/inputs.csv -------------------------------------------------------------------------------- /Section1/labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section1/labels.csv -------------------------------------------------------------------------------- /Section1/linear_regression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section1/linear_regression.cpp -------------------------------------------------------------------------------- /Section3/k_means.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section3/k_means.cpp -------------------------------------------------------------------------------- /Section4/k_means.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section4/k_means.cpp -------------------------------------------------------------------------------- /Section5/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section5/Thumbs.db -------------------------------------------------------------------------------- /Section5/classifier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section5/classifier.xml -------------------------------------------------------------------------------- /Section5/face_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section5/face_detection.cpp -------------------------------------------------------------------------------- /Section5/image.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Introduction-to-Machine-Learning-C-Libraries/HEAD/Section5/image.bmp --------------------------------------------------------------------------------