-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabn.h
48 lines (38 loc) · 852 Bytes
/
abn.h
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
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef DSL_ABN_H
#define DSL_ABN_H
// {{SMILE_PUBLIC_HEADER}}
#include <string>
#include <vector>
class DSL_dataset;
class DSL_network;
class DSL_progress;
class DSL_abn
{
public:
DSL_abn()
{
feature_selection = false;
maxParents = 5;
maxSearchTime = 0;
nrIteration = 20;
linkProbability = 0.1;
priorLinkProbability = 0.001;
priorSampleSize = 50;
seed = 0;
ThickThinning = false;
}
int Learn(DSL_dataset &ds, DSL_network &net, DSL_progress *progress = NULL) const;
std::string classvar;
bool feature_selection;
int maxParents;
int maxSearchTime;
int nrIteration;
double linkProbability;
double priorLinkProbability;
int priorSampleSize;
int seed;
bool ThickThinning;
private:
int PreChecks(const DSL_dataset &ds_, int &cvar) const;
};
#endif