karthik-2905 commited on
Commit
3e7f4dd
·
verified ·
1 Parent(s): 1129531

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ bayesian_network_analysis.png filter=lfs diff=lfs merge=lfs -text
.ipynb_checkpoints/implementation-checkpoint.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
.tool-versions ADDED
@@ -0,0 +1 @@
 
 
1
+ python 3.13.5t
README.md ADDED
@@ -0,0 +1 @@
 
 
1
+ # Bayesian-Networks
bayesian_network_analysis.png ADDED

Git LFS Details

  • SHA256: 651160474785fdd62272fa6d5745099e50300b9b737075c92989f60a086f9d48
  • Pointer size: 131 Bytes
  • Size of remote file: 415 kB
bayesian_network_model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4e180efda1b490e3abcb06fb098c9025e81ef0383116de0078e552dbbb0c8ac
3
+ size 2755
bayesian_network_training.log ADDED
File without changes
implementation.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
inference_results.json ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "large_petals": {
3
+ "evidence": {
4
+ "Petal_Length": 2,
5
+ "Petal_Width": 2
6
+ },
7
+ "probabilities": [
8
+ 0.0,
9
+ 0.04347826086956522,
10
+ 0.9565217391304348
11
+ ],
12
+ "species_names": [
13
+ "Setosa",
14
+ "Versicolor",
15
+ "Virginica"
16
+ ]
17
+ },
18
+ "small_petals": {
19
+ "evidence": {
20
+ "Petal_Length": 0,
21
+ "Petal_Width": 0
22
+ },
23
+ "probabilities": [
24
+ 1.0,
25
+ 0.0,
26
+ 0.0
27
+ ],
28
+ "species_names": [
29
+ "Setosa",
30
+ "Versicolor",
31
+ "Virginica"
32
+ ]
33
+ },
34
+ "medium_sepals": {
35
+ "evidence": {
36
+ "Sepal_Length": 1,
37
+ "Sepal_Width": 1
38
+ },
39
+ "probabilities": [
40
+ 0.12443438914027151,
41
+ 0.6312217194570137,
42
+ 0.24434389140271492
43
+ ],
44
+ "species_names": [
45
+ "Setosa",
46
+ "Versicolor",
47
+ "Virginica"
48
+ ]
49
+ },
50
+ "mixed_features": {
51
+ "evidence": {
52
+ "Sepal_Length": 2,
53
+ "Petal_Length": 0
54
+ },
55
+ "probabilities": [
56
+ NaN,
57
+ NaN,
58
+ NaN
59
+ ],
60
+ "species_names": [
61
+ "Setosa",
62
+ "Versicolor",
63
+ "Virginica"
64
+ ]
65
+ }
66
+ }
model_summary.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "Discrete Bayesian Network",
3
+ "dataset": "Iris (discretized)",
4
+ "nodes": [
5
+ "Species",
6
+ "Sepal_Length",
7
+ "Sepal_Width",
8
+ "Petal_Length",
9
+ "Petal_Width"
10
+ ],
11
+ "edges": [
12
+ [
13
+ "Species",
14
+ "Sepal_Length"
15
+ ],
16
+ [
17
+ "Species",
18
+ "Sepal_Width"
19
+ ],
20
+ [
21
+ "Species",
22
+ "Petal_Length"
23
+ ],
24
+ [
25
+ "Species",
26
+ "Petal_Width"
27
+ ],
28
+ [
29
+ "Petal_Length",
30
+ "Petal_Width"
31
+ ]
32
+ ],
33
+ "accuracy": 0.8444444444444444,
34
+ "data_shape": [
35
+ 150,
36
+ 5
37
+ ],
38
+ "num_parameters": 57,
39
+ "inference_scenarios": 4
40
+ }
processed_iris_data.csv ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Sepal_Length,Sepal_Width,Petal_Length,Petal_Width,Species
2
+ 0,2,0,0,0
3
+ 0,1,0,0,0
4
+ 0,2,0,0,0
5
+ 0,1,0,0,0
6
+ 0,2,0,0,0
7
+ 1,2,0,0,0
8
+ 0,2,0,0,0
9
+ 0,2,0,0,0
10
+ 0,1,0,0,0
11
+ 0,1,0,0,0
12
+ 1,2,0,0,0
13
+ 0,2,0,0,0
14
+ 0,1,0,0,0
15
+ 0,1,0,0,0
16
+ 1,2,0,0,0
17
+ 1,2,0,0,0
18
+ 1,2,0,0,0
19
+ 0,2,0,0,0
20
+ 1,2,0,0,0
21
+ 0,2,0,0,0
22
+ 1,2,0,0,0
23
+ 0,2,0,0,0
24
+ 0,2,0,0,0
25
+ 0,2,0,0,0
26
+ 0,2,0,0,0
27
+ 0,1,0,0,0
28
+ 0,2,0,0,0
29
+ 0,2,0,0,0
30
+ 0,2,0,0,0
31
+ 0,2,0,0,0
32
+ 0,1,0,0,0
33
+ 1,2,0,0,0
34
+ 0,2,0,0,0
35
+ 1,2,0,0,0
36
+ 0,1,0,0,0
37
+ 0,2,0,0,0
38
+ 1,2,0,0,0
39
+ 0,2,0,0,0
40
+ 0,1,0,0,0
41
+ 0,2,0,0,0
42
+ 0,2,0,0,0
43
+ 0,0,0,0,0
44
+ 0,2,0,0,0
45
+ 0,2,0,0,0
46
+ 0,2,0,0,0
47
+ 0,1,0,0,0
48
+ 0,2,0,0,0
49
+ 0,2,0,0,0
50
+ 0,2,0,0,0
51
+ 0,2,0,0,0
52
+ 2,2,1,1,1
53
+ 2,2,1,1,1
54
+ 2,1,2,1,1
55
+ 1,0,1,1,1
56
+ 2,0,1,1,1
57
+ 1,0,1,1,1
58
+ 2,2,1,2,1
59
+ 0,0,1,1,1
60
+ 2,1,1,1,1
61
+ 0,0,1,1,1
62
+ 0,0,1,1,1
63
+ 1,1,1,1,1
64
+ 1,0,1,1,1
65
+ 1,1,1,1,1
66
+ 1,1,1,1,1
67
+ 2,1,1,1,1
68
+ 1,1,1,1,1
69
+ 1,0,1,1,1
70
+ 1,0,1,1,1
71
+ 1,0,1,1,1
72
+ 1,2,1,2,1
73
+ 1,0,1,1,1
74
+ 2,0,2,1,1
75
+ 1,0,1,1,1
76
+ 2,1,1,1,1
77
+ 2,1,1,1,1
78
+ 2,0,1,1,1
79
+ 2,1,2,2,1
80
+ 1,1,1,1,1
81
+ 1,0,1,1,1
82
+ 1,0,1,1,1
83
+ 1,0,1,1,1
84
+ 1,0,1,1,1
85
+ 1,0,2,2,1
86
+ 1,1,1,1,1
87
+ 1,2,1,2,1
88
+ 2,1,1,1,1
89
+ 2,0,1,1,1
90
+ 1,1,1,1,1
91
+ 1,0,1,1,1
92
+ 1,0,1,1,1
93
+ 1,1,1,1,1
94
+ 1,0,1,1,1
95
+ 0,0,1,1,1
96
+ 1,0,1,1,1
97
+ 1,1,1,1,1
98
+ 1,1,1,1,1
99
+ 1,1,1,1,1
100
+ 0,0,1,1,1
101
+ 1,0,1,1,1
102
+ 2,2,2,2,2
103
+ 1,0,2,2,2
104
+ 2,1,2,2,2
105
+ 2,1,2,2,2
106
+ 2,1,2,2,2
107
+ 2,1,2,2,2
108
+ 0,0,1,2,2
109
+ 2,1,2,2,2
110
+ 2,0,2,2,2
111
+ 2,2,2,2,2
112
+ 2,2,2,2,2
113
+ 2,0,2,2,2
114
+ 2,1,2,2,2
115
+ 1,0,2,2,2
116
+ 1,0,2,2,2
117
+ 2,2,2,2,2
118
+ 2,1,2,2,2
119
+ 2,2,2,2,2
120
+ 2,0,2,2,2
121
+ 1,0,2,1,2
122
+ 2,2,2,2,2
123
+ 1,0,2,2,2
124
+ 2,0,2,2,2
125
+ 2,0,2,2,2
126
+ 2,2,2,2,2
127
+ 2,2,2,2,2
128
+ 1,0,1,2,2
129
+ 1,1,2,2,2
130
+ 2,0,2,2,2
131
+ 2,1,2,2,2
132
+ 2,0,2,2,2
133
+ 2,2,2,2,2
134
+ 2,0,2,2,2
135
+ 2,0,2,1,2
136
+ 1,0,2,1,2
137
+ 2,1,2,2,2
138
+ 2,2,2,2,2
139
+ 2,1,2,2,2
140
+ 1,1,1,2,2
141
+ 2,1,2,2,2
142
+ 2,1,2,2,2
143
+ 2,1,2,2,2
144
+ 1,0,2,2,2
145
+ 2,2,2,2,2
146
+ 2,2,2,2,2
147
+ 2,1,2,2,2
148
+ 2,0,2,2,2
149
+ 2,1,2,2,2
150
+ 1,2,2,2,2
151
+ 1,1,2,2,2