Deep Learning Algorithm Implementations 1.0.0
C++ implementations of fundamental deep learning algorithms
|
Namespace containing traditional machine learning algorithms. More...
Classes | |
class | KMeans |
class | PCA |
class | SVM |
Typedefs | |
using | KMeansF = KMeans< float > |
Type aliases for common use cases. | |
using | KMeansD = KMeans< double > |
using | PCAF = PCA< float > |
using | PCAD = PCA< double > |
using | SVMF = SVM< float > |
using | SVMD = SVM< double > |
Enumerations | |
enum class | KernelType { LINEAR , POLYNOMIAL , RBF , SIGMOID } |
Kernel function types for SVM. More... | |
Namespace containing traditional machine learning algorithms.
This namespace provides implementations of classical machine learning algorithms that are commonly used for data preprocessing, dimensionality reduction, clustering, and classification tasks.
The algorithms are designed to work seamlessly with the matrix utilities provided in the utils namespace.
Definition at line 142 of file kmeans.hpp.
Type aliases for common use cases.
Definition at line 141 of file kmeans.hpp.
|
strong |
Kernel function types for SVM.