RapidLib  v0.1.2
A simple library for interactive machine learning
classification.h
Go to the documentation of this file.
1 #ifndef classification_h
2 #define classification_h
3 
4 #include <vector>
5 #include "modelSet.h"
6 
12 class classification : public modelSet {
13 public:
17  classification(const std::vector<trainingExample> &trainingSet);
19  classification(const int &numInputs, const int &numOutputs);
20 
23 
25  bool train(const std::vector<trainingExample> &trainingSet);
26 
27 };
28 
29 #endif
Definition: modelSet.h:15
classification()
Definition: classification.cpp:7
int numInputs
Definition: modelSet.h:28
bool train(const std::vector< trainingExample > &trainingSet)
Definition: classification.cpp:35
~classification()
Definition: classification.h:22
int numOutputs
Definition: modelSet.h:30
Definition: classification.h:12