Skip to content

A C++ implementation and performance comparison of two machine learning algorithms, deep learning and decision tree learning

License

Notifications You must be signed in to change notification settings

connorcl/machine-learning-algorithm-comparison

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

machine-learning-algorithm-comparison

A C++ implementation and performance comparison of two machine learning algorithms, deep learning and decision tree learning, created as the final project for the university module Data Structures and Algorithms 1 (Grade: A+).

The purpose of this project was to demonstrate an informed choice of data structures in implementing standard algorithms, as well as the ability to measure, optimize and compare the performance of these algorithms. As such, the application contains implementations of each machine learning algorithm along with just enough additional code to train, validate and time them using varying amounts of data. To suit the requirements of this module, the algorithms are written from scratch with no use of external libraries and are CPU-based and single-threaded.

Once compiled, the resulting executable must be run in a directory containing the two CSV files produced by data/process_data.R, banknote_train.csv and banknote_valid.csv. These data files are a split version of the Banknote Authentication Data Set from the UCI Machine Learning Repository, which can be found here. Reference: Dua, D. and Graff, C. (2019). UCI Machine Learning Repository [http://archive.ics.uci.edu/ml]. Irvine, CA: University of California, School of Information and Computer Science.

The presentation files are the R Markdown source and PDF result (created by printing the HTML result to PDF) of a presentation about this application. This presentation covers the choice of data structures in the implementation as well as the algorithms' theoretical time complexities and an analysis of the timing results. The files data/deep_learning_results.csv and data/decision_tree_results.csv are the results produced by running the application, while the files data/deep_learning_results_nc.csv and data/decision_tree_results_nc.csv are the timing results produced by an application with less optimal data structures (nc being short for non-contiguous). These four files are required to knit the R Markdown presentation.

Releases

No releases published

Packages

No packages published