-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathivm.h
More file actions
35 lines (29 loc) · 757 Bytes
/
ivm.h
File metadata and controls
35 lines (29 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* This file provides the command line interface to the IVM using the class CClctrl (Command line control) as a base class.
23/10/2005 Modifications for compiling under Visual C++ by Neil.*/
#ifndef IVM_H
#define IVM_H
#include <fstream>
#include "ndlexceptions.h"
#include "ndlstrutil.h"
#include "CMatrix.h"
#include "CKern.h"
#include "CIvm.h"
#include "CClctrl.h"
int main(int argc, char* argv[]);
class CClivm : public CClctrl {
public:
CClivm(int argc, char** argv);
void relearn();
void learn();
void test();
void logLikelihood();
void activeSetLogLikelihood();
void predict();
void classOneProbabilities();
void display();
void gnuplot();
void helpInfo();
void helpHeader();
};
#else /* IVM_H */
#endif /* IVM_H */