Deep Learning Algorithm Implementations 1.0.0
C++ implementations of fundamental deep learning algorithms
|
Support Vector Machine implementation with automatic differentiation. More...
#include <functional>
#include <vector>
#include "../utils/matrix.hpp"
#include "../utils/autograd.hpp"
Go to the source code of this file.
Classes | |
class | ml::SVM< T > |
Namespaces | |
namespace | ml |
Namespace containing traditional machine learning algorithms. | |
Typedefs | |
using | ml::SVMF = SVM< float > |
using | ml::SVMD = SVM< double > |
Enumerations | |
enum class | ml::KernelType { ml::LINEAR , ml::POLYNOMIAL , ml::RBF , ml::SIGMOID } |
Kernel function types for SVM. More... | |
Support Vector Machine implementation with automatic differentiation.
Definition in file svm.hpp.