-
Notifications
You must be signed in to change notification settings - Fork 0
/
bayes_8.json
61 lines (61 loc) · 1.02 KB
/
bayes_8.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "Fungal Fridge",
"NodeList": [{
"name": "Food Past Eat-By date",
"stateCount": 2,
"stateLabels": ["true", "false"],
"isInstantiated": false,
"isRootNode": true,
"CPT": {
"matrix": [
[1, 0],
[0, 1]
],
"rowCount": 2,
"columnCount": 2
},
"Posterior": {
"vector": [0.2, 0.8],
"size": 2
},
"LambdaEvidence": {
"vector": [1.0, 1.0],
"size": 2
},
"PiEvidence": {
"vector": [0.2, 0.8],
"size": 2
}
},
{
"name": "Fungal Growth",
"stateCount": 2,
"stateLabels": ["true", "false"],
"isInstantiated": false,
"isRootNode": false,
"CPT": {
"matrix": [
[0.7, 0.1],
[0.3, 0.9]
],
"rowCount": 2,
"columnCount": 2
},
"Posterior": {
"vector": [1.0, 1.0],
"size": 2
},
"LambdaEvidence": {
"vector": [1.0, 1.0],
"size": 2
},
"PiEvidence": {
"vector": [1.0, 1.0],
"size": 2
}
}
],
"LinkList": [{
"endpointnames": ["Food Past Eat-By date", "Fungal Growth"]
}]
}