Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 439 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 439 Bytes

SciKit_plusplus

C++ library with some basic machine learning models

Contents

  • k_means_clustering: k means clustering algorithm. The cluster initializations implemented are Forgy's (i.e. random) and kmeans++ algorithm while the trainig algorithms available are Lloyd's and Elkans's.
  • svm: binary support vector classifier implemented with softmargin and optimized with SMO algorithm
  • neural_nets: modular MLP model