upgrade decision tree model

This commit is contained in:
Vadzim Valchkovich 2023-06-01 12:44:29 +02:00
parent dd25c7a145
commit e9b3a685e6
15 changed files with 281 additions and 660 deletions

8
.gitignore vendored
View File

@ -57,8 +57,6 @@ docs/_build/
Pipfile
Pipfile.lock
decision_tree
decision_tree.pdf
Source.gv.pdf
Source.gv
decision_tree.txt
# output
/out

View File

@ -41,8 +41,14 @@
---
- [ ] **Drzewa decyzyjne: wymagania dot. trzeciego przyrostu**
- [ ] Należy wykorzystać algorytm ID3 (tj. schemat indukcyjnego uczenia drzewa decyzyjnego oraz procedurę wyboru atrybutu o największym przyroście informacji) lub któreś z jego uogólnień.
- [ ] Należy przygotować zbiór uczący złożony z co najmniej 200 przykładów.
- [x] **Drzewa decyzyjne: wymagania dot. trzeciego przyrostu**
- [x] Należy wykorzystać algorytm ID3 (tj. schemat indukcyjnego uczenia drzewa decyzyjnego oraz procedurę wyboru atrybutu o największym przyroście informacji) lub któreś z jego uogólnień.
- [x] Należy przygotować zbiór uczący złożony z co najmniej 200 przykładów.
- [x] Decyzja stanowiąca cel uczenia powinna zostać opisana przynajmniej ośmioma atrybutami.
- [ ] Powinna pojawić się opcja podglądu wyuczonego drzewa (np. w logach lub w pliku z graficzną reprezentacją drzewa).
- [x] Powinna pojawić się opcja podglądu wyuczonego drzewa (np. w logach lub w pliku z graficzną reprezentacją drzewa).
---
- [ ] **Sieci neuronowe: wymagania dot. czwartego przyrostu**
- [ ] Należy przygotować zbiór uczący zawierający co najmniej 1000 przykładów dla każdej klasy.
- [ ] Agent powinien wykorzystywać wyuczoną sieć w procesie podejmowania decyzji.

View File

@ -1,38 +0,0 @@
from sklearn import tree
import pandas as pd #for manipulating the csv data
import numpy as np
import graphviz
import os
os.environ["PATH"] += os.pathsep + 'C:/Program Files (x86)/Graphviz/bin/'
#importing the dataset from the disk
train_data_m=np.genfromtxt("dataset/converted_dataset.csv", delimiter=",",skip_header=1);
# Separate the attributes and labels
X_train = [data[:-1] for data in train_data_m]
y_train = [data[-1] for data in train_data_m]
# Create the decision tree classifier using the ID3 algorithm
clf = tree.DecisionTreeClassifier(criterion='entropy')
#clf = tree.DecisionTreeClassifier(criterion='gini')
# Train the decision tree on the training data
clf.fit(X_train, y_train)
# Visualize the trained decision tree
tree_text = tree.export_text(clf,feature_names=['Battery Charge', 'Fullness', 'Ready orders', 'Waiting tables','Availability', 'Cleanliness', 'Error'])
with open('decision_tree.txt', 'w') as f:
f.write(tree_text) # Save the visualization as a text file
dot_data = tree.export_graphviz(clf, out_file=None, feature_names=['Battery Charge', 'Fullness', 'Ready orders', 'Waiting tables','Availability', 'Cleanliness', 'Error'], class_names=['NO', 'YES'], filled=True,rounded=True)
graph = graphviz.Source(dot_data)
graph.render("decision_tree") # Save the visualization as a PDF file
# Test the decision tree with a new example
#Battery Charge,Fullness,Ready orders,Waiting tables,Availability,Cleanliness,Error
new_example = [2, 0, 1, 1, 1 ,2, 0]
predicted_label = clf.predict([new_example])
if predicted_label[0]>0:
result="YES"
else:
result="NO"
print("Predicted Label:", result)

View File

@ -1,201 +0,0 @@
Battery Charge,Fullness,Ready orders,Waiting tables,Availability,Cleanliness,Error,To go
high,full,none,none,available,low,yes,no
low,full,none,none,unavailable,medium,yes,no
high,full,none,none,unavailable,medium,no,no
medium,empty,none,none,unavailable,low,no,no
high,full,none,none,available,medium,no,no
low,full,none,available,unavailable,medium,yes,no
medium,empty,none,available,unavailable,high,yes,no
medium,full,none,available,available,low,yes,no
medium,full,available,none,unavailable,low,yes,no
high,empty,none,none,unavailable,medium,yes,no
medium,empty,none,available,unavailable,medium,yes,no
low,empty,available,none,available,high,no,no
high,full,available,none,available,low,yes,no
medium,full,none,available,available,low,no,no
medium,full,none,available,available,medium,no,yes
empty,full,none,none,unavailable,high,yes,no
low,full,none,none,unavailable,medium,no,no
low,full,available,none,unavailable,low,no,no
medium,empty,none,available,unavailable,medium,no,no
low,empty,available,available,unavailable,medium,no,no
medium,empty,available,available,unavailable,medium,yes,no
low,empty,none,none,unavailable,high,no,no
medium,full,available,available,unavailable,medium,yes,no
high,empty,available,none,available,medium,no,yes
empty,empty,available,available,unavailable,low,yes,no
high,empty,none,none,unavailable,high,yes,no
medium,empty,available,available,available,medium,no,yes
medium,full,available,available,available,low,no,no
empty,full,none,available,available,high,no,no
empty,empty,none,none,unavailable,low,no,no
medium,full,none,none,unavailable,medium,no,no
medium,empty,available,available,unavailable,high,yes,no
high,full,available,none,available,medium,yes,no
medium,empty,none,available,unavailable,low,yes,no
low,empty,none,none,available,low,no,no
high,full,available,available,available,low,yes,no
high,full,available,available,unavailable,high,yes,no
low,full,available,available,unavailable,high,yes,no
low,full,none,none,unavailable,low,yes,no
medium,full,none,none,unavailable,medium,yes,no
high,full,none,available,available,medium,yes,no
low,empty,none,none,unavailable,low,no,no
high,empty,available,none,unavailable,low,yes,no
medium,full,none,available,available,high,no,yes
low,empty,available,available,available,high,yes,no
low,full,available,none,unavailable,high,yes,no
medium,full,available,none,unavailable,low,no,no
medium,full,available,available,unavailable,high,no,no
medium,full,none,available,unavailable,low,yes,no
medium,empty,available,none,unavailable,low,yes,no
medium,empty,none,none,available,high,no,no
empty,full,none,none,available,low,no,no
low,full,available,available,available,medium,yes,no
low,full,available,none,unavailable,high,no,no
high,full,available,none,available,medium,no,no
low,full,none,available,available,medium,no,no
empty,empty,none,available,available,high,no,no
low,full,none,available,unavailable,low,no,no
high,full,none,none,unavailable,high,no,no
medium,full,none,none,available,high,yes,no
low,empty,none,available,available,medium,no,no
empty,empty,none,available,unavailable,low,no,no
empty,full,available,none,available,low,yes,no
empty,empty,available,available,available,medium,no,no
empty,empty,available,none,unavailable,medium,no,no
empty,empty,none,none,unavailable,high,no,no
medium,empty,available,none,unavailable,high,no,no
empty,empty,available,none,available,medium,yes,no
empty,empty,none,none,unavailable,high,yes,no
high,full,available,available,unavailable,low,no,no
high,empty,available,available,available,high,yes,no
high,empty,available,none,available,low,no,no
low,empty,none,available,unavailable,medium,no,no
medium,full,none,available,unavailable,low,no,no
medium,empty,none,available,available,high,yes,no
medium,empty,available,available,available,high,no,yes
high,empty,none,available,unavailable,low,yes,no
low,full,available,available,available,high,no,no
medium,empty,none,available,available,high,no,no
medium,empty,available,none,available,high,no,yes
empty,full,available,available,unavailable,high,no,no
low,empty,none,available,available,low,no,no
high,full,none,available,available,low,yes,no
high,empty,none,none,available,medium,yes,no
empty,empty,available,none,unavailable,low,no,no
high,full,none,available,unavailable,low,yes,no
empty,full,none,available,unavailable,high,no,no
empty,full,available,none,available,low,no,no
medium,full,none,none,available,high,no,no
medium,full,available,available,unavailable,low,yes,no
empty,full,available,available,unavailable,low,yes,no
low,empty,none,none,unavailable,medium,no,no
low,full,none,none,unavailable,low,no,no
low,full,available,available,unavailable,low,yes,no
low,empty,none,available,available,low,yes,no
empty,full,available,none,unavailable,high,no,no
low,full,available,none,available,high,no,no
high,full,available,available,available,medium,yes,no
empty,full,none,available,available,medium,yes,no
low,full,none,none,available,medium,no,no
empty,full,available,available,available,low,no,no
medium,full,available,none,unavailable,medium,yes,no
empty,empty,none,none,available,medium,no,no
high,full,none,available,unavailable,low,no,no
low,empty,available,available,available,high,no,no
low,empty,none,available,available,high,yes,no
high,full,none,available,available,medium,no,yes
empty,full,available,none,available,medium,yes,no
high,full,none,none,available,low,no,no
low,empty,available,available,unavailable,high,no,no
low,full,available,none,available,medium,yes,no
high,empty,none,none,unavailable,low,no,no
low,full,none,none,unavailable,high,yes,no
high,empty,none,available,available,low,yes,no
empty,full,available,available,unavailable,low,no,no
low,empty,available,available,unavailable,low,no,no
low,full,available,none,unavailable,low,yes,no
empty,empty,available,available,unavailable,high,no,no
medium,full,available,none,available,medium,yes,no
high,full,available,none,available,high,no,no
low,full,none,available,available,medium,yes,no
low,empty,none,available,unavailable,medium,yes,no
high,full,available,available,unavailable,medium,yes,no
high,full,none,none,unavailable,medium,yes,no
low,full,available,available,available,low,yes,no
low,full,available,available,unavailable,high,no,no
empty,full,none,none,available,medium,no,no
empty,empty,available,none,available,low,yes,no
high,full,available,none,unavailable,high,no,no
high,full,none,available,unavailable,high,no,no
low,empty,available,available,unavailable,medium,yes,no
high,empty,available,available,available,low,yes,no
empty,full,none,none,unavailable,low,no,no
high,full,none,available,unavailable,medium,yes,no
high,empty,available,none,unavailable,medium,no,no
empty,empty,available,none,available,high,yes,no
high,empty,available,none,unavailable,medium,yes,no
empty,empty,none,none,unavailable,medium,no,no
high,empty,none,available,available,high,no,no
medium,empty,none,none,unavailable,low,yes,no
medium,full,available,none,unavailable,high,no,no
high,full,none,none,unavailable,low,no,no
high,empty,none,none,unavailable,medium,no,no
medium,full,available,none,available,low,no,no
high,empty,none,none,available,high,yes,no
empty,full,available,available,available,high,no,no
medium,full,available,available,unavailable,low,no,no
empty,full,available,none,available,medium,no,no
empty,full,available,available,unavailable,medium,yes,no
empty,empty,available,none,available,high,no,no
low,empty,none,none,available,high,yes,no
empty,full,none,available,unavailable,medium,yes,no
medium,full,none,available,unavailable,medium,yes,no
medium,full,available,none,available,low,yes,no
medium,full,available,none,unavailable,high,yes,no
medium,full,available,available,available,high,no,yes
medium,full,none,none,available,low,no,no
high,full,none,available,available,high,no,yes
low,empty,available,available,unavailable,low,yes,no
low,full,none,available,unavailable,high,yes,no
medium,full,available,available,available,high,yes,no
high,full,available,available,available,low,no,no
medium,full,none,none,unavailable,high,yes,no
medium,full,none,available,unavailable,high,no,no
high,empty,none,available,unavailable,high,yes,no
empty,empty,none,available,available,medium,no,no
empty,empty,available,none,unavailable,high,no,no
high,empty,available,available,unavailable,high,yes,no
medium,empty,available,available,unavailable,low,yes,no
medium,full,none,none,unavailable,low,no,no
high,empty,none,none,available,low,no,no
high,full,available,none,unavailable,medium,no,no
high,full,available,none,unavailable,low,yes,no
empty,empty,available,available,available,low,yes,no
high,empty,none,none,unavailable,low,yes,no
medium,empty,none,none,available,low,no,no
low,full,none,available,unavailable,medium,no,no
low,full,none,available,available,high,yes,no
high,full,none,available,unavailable,high,yes,no
medium,full,none,available,available,medium,yes,no
empty,empty,none,available,unavailable,high,yes,no
medium,empty,available,none,unavailable,medium,yes,no
empty,empty,none,available,unavailable,low,yes,no
high,empty,none,available,unavailable,medium,no,no
medium,empty,available,none,available,low,yes,no
medium,full,available,available,available,medium,no,yes
high,full,available,none,unavailable,medium,yes,no
high,full,available,available,unavailable,medium,no,no
low,full,available,none,available,medium,no,no
medium,empty,available,none,unavailable,high,yes,no
medium,empty,available,none,available,medium,yes,no
high,empty,none,none,available,high,no,no
empty,full,available,none,unavailable,high,yes,no
low,empty,available,none,unavailable,low,yes,no
empty,full,available,available,available,low,yes,no
medium,empty,available,available,unavailable,medium,no,no
medium,empty,none,none,unavailable,high,no,no
medium,full,available,available,unavailable,medium,no,no
empty,full,available,available,available,medium,no,no
low,empty,available,none,available,low,no,no
1 Battery Charge Fullness Ready orders Waiting tables Availability Cleanliness Error To go
2 high full none none available low yes no
3 low full none none unavailable medium yes no
4 high full none none unavailable medium no no
5 medium empty none none unavailable low no no
6 high full none none available medium no no
7 low full none available unavailable medium yes no
8 medium empty none available unavailable high yes no
9 medium full none available available low yes no
10 medium full available none unavailable low yes no
11 high empty none none unavailable medium yes no
12 medium empty none available unavailable medium yes no
13 low empty available none available high no no
14 high full available none available low yes no
15 medium full none available available low no no
16 medium full none available available medium no yes
17 empty full none none unavailable high yes no
18 low full none none unavailable medium no no
19 low full available none unavailable low no no
20 medium empty none available unavailable medium no no
21 low empty available available unavailable medium no no
22 medium empty available available unavailable medium yes no
23 low empty none none unavailable high no no
24 medium full available available unavailable medium yes no
25 high empty available none available medium no yes
26 empty empty available available unavailable low yes no
27 high empty none none unavailable high yes no
28 medium empty available available available medium no yes
29 medium full available available available low no no
30 empty full none available available high no no
31 empty empty none none unavailable low no no
32 medium full none none unavailable medium no no
33 medium empty available available unavailable high yes no
34 high full available none available medium yes no
35 medium empty none available unavailable low yes no
36 low empty none none available low no no
37 high full available available available low yes no
38 high full available available unavailable high yes no
39 low full available available unavailable high yes no
40 low full none none unavailable low yes no
41 medium full none none unavailable medium yes no
42 high full none available available medium yes no
43 low empty none none unavailable low no no
44 high empty available none unavailable low yes no
45 medium full none available available high no yes
46 low empty available available available high yes no
47 low full available none unavailable high yes no
48 medium full available none unavailable low no no
49 medium full available available unavailable high no no
50 medium full none available unavailable low yes no
51 medium empty available none unavailable low yes no
52 medium empty none none available high no no
53 empty full none none available low no no
54 low full available available available medium yes no
55 low full available none unavailable high no no
56 high full available none available medium no no
57 low full none available available medium no no
58 empty empty none available available high no no
59 low full none available unavailable low no no
60 high full none none unavailable high no no
61 medium full none none available high yes no
62 low empty none available available medium no no
63 empty empty none available unavailable low no no
64 empty full available none available low yes no
65 empty empty available available available medium no no
66 empty empty available none unavailable medium no no
67 empty empty none none unavailable high no no
68 medium empty available none unavailable high no no
69 empty empty available none available medium yes no
70 empty empty none none unavailable high yes no
71 high full available available unavailable low no no
72 high empty available available available high yes no
73 high empty available none available low no no
74 low empty none available unavailable medium no no
75 medium full none available unavailable low no no
76 medium empty none available available high yes no
77 medium empty available available available high no yes
78 high empty none available unavailable low yes no
79 low full available available available high no no
80 medium empty none available available high no no
81 medium empty available none available high no yes
82 empty full available available unavailable high no no
83 low empty none available available low no no
84 high full none available available low yes no
85 high empty none none available medium yes no
86 empty empty available none unavailable low no no
87 high full none available unavailable low yes no
88 empty full none available unavailable high no no
89 empty full available none available low no no
90 medium full none none available high no no
91 medium full available available unavailable low yes no
92 empty full available available unavailable low yes no
93 low empty none none unavailable medium no no
94 low full none none unavailable low no no
95 low full available available unavailable low yes no
96 low empty none available available low yes no
97 empty full available none unavailable high no no
98 low full available none available high no no
99 high full available available available medium yes no
100 empty full none available available medium yes no
101 low full none none available medium no no
102 empty full available available available low no no
103 medium full available none unavailable medium yes no
104 empty empty none none available medium no no
105 high full none available unavailable low no no
106 low empty available available available high no no
107 low empty none available available high yes no
108 high full none available available medium no yes
109 empty full available none available medium yes no
110 high full none none available low no no
111 low empty available available unavailable high no no
112 low full available none available medium yes no
113 high empty none none unavailable low no no
114 low full none none unavailable high yes no
115 high empty none available available low yes no
116 empty full available available unavailable low no no
117 low empty available available unavailable low no no
118 low full available none unavailable low yes no
119 empty empty available available unavailable high no no
120 medium full available none available medium yes no
121 high full available none available high no no
122 low full none available available medium yes no
123 low empty none available unavailable medium yes no
124 high full available available unavailable medium yes no
125 high full none none unavailable medium yes no
126 low full available available available low yes no
127 low full available available unavailable high no no
128 empty full none none available medium no no
129 empty empty available none available low yes no
130 high full available none unavailable high no no
131 high full none available unavailable high no no
132 low empty available available unavailable medium yes no
133 high empty available available available low yes no
134 empty full none none unavailable low no no
135 high full none available unavailable medium yes no
136 high empty available none unavailable medium no no
137 empty empty available none available high yes no
138 high empty available none unavailable medium yes no
139 empty empty none none unavailable medium no no
140 high empty none available available high no no
141 medium empty none none unavailable low yes no
142 medium full available none unavailable high no no
143 high full none none unavailable low no no
144 high empty none none unavailable medium no no
145 medium full available none available low no no
146 high empty none none available high yes no
147 empty full available available available high no no
148 medium full available available unavailable low no no
149 empty full available none available medium no no
150 empty full available available unavailable medium yes no
151 empty empty available none available high no no
152 low empty none none available high yes no
153 empty full none available unavailable medium yes no
154 medium full none available unavailable medium yes no
155 medium full available none available low yes no
156 medium full available none unavailable high yes no
157 medium full available available available high no yes
158 medium full none none available low no no
159 high full none available available high no yes
160 low empty available available unavailable low yes no
161 low full none available unavailable high yes no
162 medium full available available available high yes no
163 high full available available available low no no
164 medium full none none unavailable high yes no
165 medium full none available unavailable high no no
166 high empty none available unavailable high yes no
167 empty empty none available available medium no no
168 empty empty available none unavailable high no no
169 high empty available available unavailable high yes no
170 medium empty available available unavailable low yes no
171 medium full none none unavailable low no no
172 high empty none none available low no no
173 high full available none unavailable medium no no
174 high full available none unavailable low yes no
175 empty empty available available available low yes no
176 high empty none none unavailable low yes no
177 medium empty none none available low no no
178 low full none available unavailable medium no no
179 low full none available available high yes no
180 high full none available unavailable high yes no
181 medium full none available available medium yes no
182 empty empty none available unavailable high yes no
183 medium empty available none unavailable medium yes no
184 empty empty none available unavailable low yes no
185 high empty none available unavailable medium no no
186 medium empty available none available low yes no
187 medium full available available available medium no yes
188 high full available none unavailable medium yes no
189 high full available available unavailable medium no no
190 low full available none available medium no no
191 medium empty available none unavailable high yes no
192 medium empty available none available medium yes no
193 high empty none none available high no no
194 empty full available none unavailable high yes no
195 low empty available none unavailable low yes no
196 empty full available available available low yes no
197 medium empty available available unavailable medium no no
198 medium empty none none unavailable high no no
199 medium full available available unavailable medium no no
200 empty full available available available medium no no
201 low empty available none available low no no

View File

@ -1,200 +0,0 @@
3,1,0,0,1,0,1,0
1,1,0,0,0,1,1,0
3,1,0,0,0,1,0,0
2,0,0,0,0,0,0,0
3,1,0,0,1,1,0,0
1,1,0,1,0,1,1,0
2,0,0,1,0,2,1,0
2,1,0,1,1,0,1,0
2,1,1,0,0,0,1,0
3,0,0,0,0,1,1,0
2,0,0,1,0,1,1,0
1,0,1,0,1,2,0,0
3,1,1,0,1,0,1,0
2,1,0,1,1,0,0,0
2,1,0,1,1,1,0,1
0,1,0,0,0,2,1,0
1,1,0,0,0,1,0,0
1,1,1,0,0,0,0,0
2,0,0,1,0,1,0,0
1,0,1,1,0,1,0,0
2,0,1,1,0,1,1,0
1,0,0,0,0,2,0,0
2,1,1,1,0,1,1,0
3,0,1,0,1,1,0,1
0,0,1,1,0,0,1,0
3,0,0,0,0,2,1,0
2,0,1,1,1,1,0,1
2,1,1,1,1,0,0,0
0,1,0,1,1,2,0,0
0,0,0,0,0,0,0,0
2,1,0,0,0,1,0,0
2,0,1,1,0,2,1,0
3,1,1,0,1,1,1,0
2,0,0,1,0,0,1,0
1,0,0,0,1,0,0,0
3,1,1,1,1,0,1,0
3,1,1,1,0,2,1,0
1,1,1,1,0,2,1,0
1,1,0,0,0,0,1,0
2,1,0,0,0,1,1,0
3,1,0,1,1,1,1,0
1,0,0,0,0,0,0,0
3,0,1,0,0,0,1,0
2,1,0,1,1,2,0,1
1,0,1,1,1,2,1,0
1,1,1,0,0,2,1,0
2,1,1,0,0,0,0,0
2,1,1,1,0,2,0,0
2,1,0,1,0,0,1,0
2,0,1,0,0,0,1,0
2,0,0,0,1,2,0,0
0,1,0,0,1,0,0,0
1,1,1,1,1,1,1,0
1,1,1,0,0,2,0,0
3,1,1,0,1,1,0,0
1,1,0,1,1,1,0,0
0,0,0,1,1,2,0,0
1,1,0,1,0,0,0,0
3,1,0,0,0,2,0,0
2,1,0,0,1,2,1,0
1,0,0,1,1,1,0,0
0,0,0,1,0,0,0,0
0,1,1,0,1,0,1,0
0,0,1,1,1,1,0,0
0,0,1,0,0,1,0,0
0,0,0,0,0,2,0,0
2,0,1,0,0,2,0,0
0,0,1,0,1,1,1,0
0,0,0,0,0,2,1,0
3,1,1,1,0,0,0,0
3,0,1,1,1,2,1,0
3,0,1,0,1,0,0,0
1,0,0,1,0,1,0,0
2,1,0,1,0,0,0,0
2,0,0,1,1,2,1,0
2,0,1,1,1,2,0,1
3,0,0,1,0,0,1,0
1,1,1,1,1,2,0,0
2,0,0,1,1,2,0,0
2,0,1,0,1,2,0,1
0,1,1,1,0,2,0,0
1,0,0,1,1,0,0,0
3,1,0,1,1,0,1,0
3,0,0,0,1,1,1,0
0,0,1,0,0,0,0,0
3,1,0,1,0,0,1,0
0,1,0,1,0,2,0,0
0,1,1,0,1,0,0,0
2,1,0,0,1,2,0,0
2,1,1,1,0,0,1,0
0,1,1,1,0,0,1,0
1,0,0,0,0,1,0,0
1,1,0,0,0,0,0,0
1,1,1,1,0,0,1,0
1,0,0,1,1,0,1,0
0,1,1,0,0,2,0,0
1,1,1,0,1,2,0,0
3,1,1,1,1,1,1,0
0,1,0,1,1,1,1,0
1,1,0,0,1,1,0,0
0,1,1,1,1,0,0,0
2,1,1,0,0,1,1,0
0,0,0,0,1,1,0,0
3,1,0,1,0,0,0,0
1,0,1,1,1,2,0,0
1,0,0,1,1,2,1,0
3,1,0,1,1,1,0,1
0,1,1,0,1,1,1,0
3,1,0,0,1,0,0,0
1,0,1,1,0,2,0,0
1,1,1,0,1,1,1,0
3,0,0,0,0,0,0,0
1,1,0,0,0,2,1,0
3,0,0,1,1,0,1,0
0,1,1,1,0,0,0,0
1,0,1,1,0,0,0,0
1,1,1,0,0,0,1,0
0,0,1,1,0,2,0,0
2,1,1,0,1,1,1,0
3,1,1,0,1,2,0,0
1,1,0,1,1,1,1,0
1,0,0,1,0,1,1,0
3,1,1,1,0,1,1,0
3,1,0,0,0,1,1,0
1,1,1,1,1,0,1,0
1,1,1,1,0,2,0,0
0,1,0,0,1,1,0,0
0,0,1,0,1,0,1,0
3,1,1,0,0,2,0,0
3,1,0,1,0,2,0,0
1,0,1,1,0,1,1,0
3,0,1,1,1,0,1,0
0,1,0,0,0,0,0,0
3,1,0,1,0,1,1,0
3,0,1,0,0,1,0,0
0,0,1,0,1,2,1,0
3,0,1,0,0,1,1,0
0,0,0,0,0,1,0,0
3,0,0,1,1,2,0,0
2,0,0,0,0,0,1,0
2,1,1,0,0,2,0,0
3,1,0,0,0,0,0,0
3,0,0,0,0,1,0,0
2,1,1,0,1,0,0,0
3,0,0,0,1,2,1,0
0,1,1,1,1,2,0,0
2,1,1,1,0,0,0,0
0,1,1,0,1,1,0,0
0,1,1,1,0,1,1,0
0,0,1,0,1,2,0,0
1,0,0,0,1,2,1,0
0,1,0,1,0,1,1,0
2,1,0,1,0,1,1,0
2,1,1,0,1,0,1,0
2,1,1,0,0,2,1,0
2,1,1,1,1,2,0,1
2,1,0,0,1,0,0,0
3,1,0,1,1,2,0,1
1,0,1,1,0,0,1,0
1,1,0,1,0,2,1,0
2,1,1,1,1,2,1,0
3,1,1,1,1,0,0,0
2,1,0,0,0,2,1,0
2,1,0,1,0,2,0,0
3,0,0,1,0,2,1,0
0,0,0,1,1,1,0,0
0,0,1,0,0,2,0,0
3,0,1,1,0,2,1,0
2,0,1,1,0,0,1,0
2,1,0,0,0,0,0,0
3,0,0,0,1,0,0,0
3,1,1,0,0,1,0,0
3,1,1,0,0,0,1,0
0,0,1,1,1,0,1,0
3,0,0,0,0,0,1,0
2,0,0,0,1,0,0,0
1,1,0,1,0,1,0,0
1,1,0,1,1,2,1,0
3,1,0,1,0,2,1,0
2,1,0,1,1,1,1,0
0,0,0,1,0,2,1,0
2,0,1,0,0,1,1,0
0,0,0,1,0,0,1,0
3,0,0,1,0,1,0,0
2,0,1,0,1,0,1,0
2,1,1,1,1,1,0,1
3,1,1,0,0,1,1,0
3,1,1,1,0,1,0,0
1,1,1,0,1,1,0,0
2,0,1,0,0,2,1,0
2,0,1,0,1,1,1,0
3,0,0,0,1,2,0,0
0,1,1,0,0,2,1,0
1,0,1,0,0,0,1,0
0,1,1,1,1,0,1,0
2,0,1,1,0,1,0,0
2,0,0,0,0,2,0,0
2,1,1,1,0,1,0,0
0,1,1,1,1,1,0,0
1,0,1,0,1,0,0,0
1 3 1 0 0 1 0 1 0
2 1 1 0 0 0 1 1 0
3 3 1 0 0 0 1 0 0
4 2 0 0 0 0 0 0 0
5 3 1 0 0 1 1 0 0
6 1 1 0 1 0 1 1 0
7 2 0 0 1 0 2 1 0
8 2 1 0 1 1 0 1 0
9 2 1 1 0 0 0 1 0
10 3 0 0 0 0 1 1 0
11 2 0 0 1 0 1 1 0
12 1 0 1 0 1 2 0 0
13 3 1 1 0 1 0 1 0
14 2 1 0 1 1 0 0 0
15 2 1 0 1 1 1 0 1
16 0 1 0 0 0 2 1 0
17 1 1 0 0 0 1 0 0
18 1 1 1 0 0 0 0 0
19 2 0 0 1 0 1 0 0
20 1 0 1 1 0 1 0 0
21 2 0 1 1 0 1 1 0
22 1 0 0 0 0 2 0 0
23 2 1 1 1 0 1 1 0
24 3 0 1 0 1 1 0 1
25 0 0 1 1 0 0 1 0
26 3 0 0 0 0 2 1 0
27 2 0 1 1 1 1 0 1
28 2 1 1 1 1 0 0 0
29 0 1 0 1 1 2 0 0
30 0 0 0 0 0 0 0 0
31 2 1 0 0 0 1 0 0
32 2 0 1 1 0 2 1 0
33 3 1 1 0 1 1 1 0
34 2 0 0 1 0 0 1 0
35 1 0 0 0 1 0 0 0
36 3 1 1 1 1 0 1 0
37 3 1 1 1 0 2 1 0
38 1 1 1 1 0 2 1 0
39 1 1 0 0 0 0 1 0
40 2 1 0 0 0 1 1 0
41 3 1 0 1 1 1 1 0
42 1 0 0 0 0 0 0 0
43 3 0 1 0 0 0 1 0
44 2 1 0 1 1 2 0 1
45 1 0 1 1 1 2 1 0
46 1 1 1 0 0 2 1 0
47 2 1 1 0 0 0 0 0
48 2 1 1 1 0 2 0 0
49 2 1 0 1 0 0 1 0
50 2 0 1 0 0 0 1 0
51 2 0 0 0 1 2 0 0
52 0 1 0 0 1 0 0 0
53 1 1 1 1 1 1 1 0
54 1 1 1 0 0 2 0 0
55 3 1 1 0 1 1 0 0
56 1 1 0 1 1 1 0 0
57 0 0 0 1 1 2 0 0
58 1 1 0 1 0 0 0 0
59 3 1 0 0 0 2 0 0
60 2 1 0 0 1 2 1 0
61 1 0 0 1 1 1 0 0
62 0 0 0 1 0 0 0 0
63 0 1 1 0 1 0 1 0
64 0 0 1 1 1 1 0 0
65 0 0 1 0 0 1 0 0
66 0 0 0 0 0 2 0 0
67 2 0 1 0 0 2 0 0
68 0 0 1 0 1 1 1 0
69 0 0 0 0 0 2 1 0
70 3 1 1 1 0 0 0 0
71 3 0 1 1 1 2 1 0
72 3 0 1 0 1 0 0 0
73 1 0 0 1 0 1 0 0
74 2 1 0 1 0 0 0 0
75 2 0 0 1 1 2 1 0
76 2 0 1 1 1 2 0 1
77 3 0 0 1 0 0 1 0
78 1 1 1 1 1 2 0 0
79 2 0 0 1 1 2 0 0
80 2 0 1 0 1 2 0 1
81 0 1 1 1 0 2 0 0
82 1 0 0 1 1 0 0 0
83 3 1 0 1 1 0 1 0
84 3 0 0 0 1 1 1 0
85 0 0 1 0 0 0 0 0
86 3 1 0 1 0 0 1 0
87 0 1 0 1 0 2 0 0
88 0 1 1 0 1 0 0 0
89 2 1 0 0 1 2 0 0
90 2 1 1 1 0 0 1 0
91 0 1 1 1 0 0 1 0
92 1 0 0 0 0 1 0 0
93 1 1 0 0 0 0 0 0
94 1 1 1 1 0 0 1 0
95 1 0 0 1 1 0 1 0
96 0 1 1 0 0 2 0 0
97 1 1 1 0 1 2 0 0
98 3 1 1 1 1 1 1 0
99 0 1 0 1 1 1 1 0
100 1 1 0 0 1 1 0 0
101 0 1 1 1 1 0 0 0
102 2 1 1 0 0 1 1 0
103 0 0 0 0 1 1 0 0
104 3 1 0 1 0 0 0 0
105 1 0 1 1 1 2 0 0
106 1 0 0 1 1 2 1 0
107 3 1 0 1 1 1 0 1
108 0 1 1 0 1 1 1 0
109 3 1 0 0 1 0 0 0
110 1 0 1 1 0 2 0 0
111 1 1 1 0 1 1 1 0
112 3 0 0 0 0 0 0 0
113 1 1 0 0 0 2 1 0
114 3 0 0 1 1 0 1 0
115 0 1 1 1 0 0 0 0
116 1 0 1 1 0 0 0 0
117 1 1 1 0 0 0 1 0
118 0 0 1 1 0 2 0 0
119 2 1 1 0 1 1 1 0
120 3 1 1 0 1 2 0 0
121 1 1 0 1 1 1 1 0
122 1 0 0 1 0 1 1 0
123 3 1 1 1 0 1 1 0
124 3 1 0 0 0 1 1 0
125 1 1 1 1 1 0 1 0
126 1 1 1 1 0 2 0 0
127 0 1 0 0 1 1 0 0
128 0 0 1 0 1 0 1 0
129 3 1 1 0 0 2 0 0
130 3 1 0 1 0 2 0 0
131 1 0 1 1 0 1 1 0
132 3 0 1 1 1 0 1 0
133 0 1 0 0 0 0 0 0
134 3 1 0 1 0 1 1 0
135 3 0 1 0 0 1 0 0
136 0 0 1 0 1 2 1 0
137 3 0 1 0 0 1 1 0
138 0 0 0 0 0 1 0 0
139 3 0 0 1 1 2 0 0
140 2 0 0 0 0 0 1 0
141 2 1 1 0 0 2 0 0
142 3 1 0 0 0 0 0 0
143 3 0 0 0 0 1 0 0
144 2 1 1 0 1 0 0 0
145 3 0 0 0 1 2 1 0
146 0 1 1 1 1 2 0 0
147 2 1 1 1 0 0 0 0
148 0 1 1 0 1 1 0 0
149 0 1 1 1 0 1 1 0
150 0 0 1 0 1 2 0 0
151 1 0 0 0 1 2 1 0
152 0 1 0 1 0 1 1 0
153 2 1 0 1 0 1 1 0
154 2 1 1 0 1 0 1 0
155 2 1 1 0 0 2 1 0
156 2 1 1 1 1 2 0 1
157 2 1 0 0 1 0 0 0
158 3 1 0 1 1 2 0 1
159 1 0 1 1 0 0 1 0
160 1 1 0 1 0 2 1 0
161 2 1 1 1 1 2 1 0
162 3 1 1 1 1 0 0 0
163 2 1 0 0 0 2 1 0
164 2 1 0 1 0 2 0 0
165 3 0 0 1 0 2 1 0
166 0 0 0 1 1 1 0 0
167 0 0 1 0 0 2 0 0
168 3 0 1 1 0 2 1 0
169 2 0 1 1 0 0 1 0
170 2 1 0 0 0 0 0 0
171 3 0 0 0 1 0 0 0
172 3 1 1 0 0 1 0 0
173 3 1 1 0 0 0 1 0
174 0 0 1 1 1 0 1 0
175 3 0 0 0 0 0 1 0
176 2 0 0 0 1 0 0 0
177 1 1 0 1 0 1 0 0
178 1 1 0 1 1 2 1 0
179 3 1 0 1 0 2 1 0
180 2 1 0 1 1 1 1 0
181 0 0 0 1 0 2 1 0
182 2 0 1 0 0 1 1 0
183 0 0 0 1 0 0 1 0
184 3 0 0 1 0 1 0 0
185 2 0 1 0 1 0 1 0
186 2 1 1 1 1 1 0 1
187 3 1 1 0 0 1 1 0
188 3 1 1 1 0 1 0 0
189 1 1 1 0 1 1 0 0
190 2 0 1 0 0 2 1 0
191 2 0 1 0 1 1 1 0
192 3 0 0 0 1 2 0 0
193 0 1 1 0 0 2 1 0
194 1 0 1 0 0 0 1 0
195 0 1 1 1 1 0 1 0
196 2 0 1 1 0 1 0 0
197 2 0 0 0 0 2 0 0
198 2 1 1 1 0 1 0 0
199 0 1 1 1 1 1 0 0
200 1 0 1 0 1 0 0 0

View File

@ -1,57 +0,0 @@
import random
import csv
attributes = {
1: ["empty", "low", "medium", "high"],
2: ["empty", "full"],
3: ["none", "available"],
4: ["none", "available"],
5: ["unavailable", "available"],
6: ["low", "medium", "high"],
7: ["no", "yes"],
8: ["no", "yes"]
}
dataset = []
while len(dataset) < 200:
data = {}
# Generate random values for attributes 1-7
for attr in range(1, 8):
data[attr] = random.choice(attributes[attr])
# Apply the rules to determine the value of attribute 8
if data[1] in ["empty", "low"]:
data[8] = "no"
elif data[2] == "full" and data[4] == "none":
data[8] = "no"
elif data[2] == "empty" and data[3] == "none":
data[8] = "no"
elif data[3] == "none" and data[4] == "none":
data[8] = "no"
elif data[5] == "unavailable":
data[8] = "no"
elif data[6] == "low":
data[8] = "no"
elif data[7] == "yes":
data[8] = "no"
else:
data[8] = "yes"
# Check if the generated data already exists in the dataset
if data not in dataset:
dataset.append(data)
# Print the generated dataset
for data in dataset:
print(data)
with open("dataset/Dataset.csv", "w", newline="") as csvfile:
writer = csv.writer(csvfile)
# Write the header row
writer.writerow(["Battery Charge", "Fullness", "Ready orders", "Waiting tables","Availability", "Cleanliness", "Error", "To go"])
# Write the data rows
for data in dataset:
row = [data[attr] for attr in range(1, 9)]
writer.writerow(row)

View File

@ -1,2 +1,5 @@
-i https://pypi.org/simple
pygame==2.3.0
pandas
scikit-learn
graphviz

View File

@ -4,6 +4,8 @@ from .obj.Object import Object
from .obj.Waiter import Waiter
from .UserController import UserController
from .StateController import StateController
from .decisionTree.TreeConcept import TreeEngine
from queue import PriorityQueue
class Engine:
@ -12,6 +14,7 @@ class Engine:
pygame.display.set_caption('Waiter Agent')
self.action_clock = 0
self.tree = TreeEngine()
self.user: Waiter = user
self.state: StateController = state
@ -59,6 +62,7 @@ class Engine:
if self.goals:
self.state.graphsearch(self)
self.user.handler(self)
self.predict()
else:
# went path
@ -105,3 +109,49 @@ class Engine:
def appendGoalPosition(self, position):
self.goals.append(position)
def predict(self):
goal_queue = PriorityQueue()
for o in self.objects:
condition = o.agent_role in [
"order",
"wait",
"done"
]
if not condition or o.compare_pos(self.user.obj.position):
continue
battery = self.user.obj.battary_status()[0]
distance = o.distance_to(
self.user.obj.position) // (self.num_squares // 2)
mood = o.get_mood(self.action_clock)[0] if condition else 0
memory = self.user.obj.memory_size
dishes_held = self.user.obj.basket_size
customers = o.customers if condition else 0
waiting_for_order = o.is_order() if condition else 0
waiting_for_dish = o.is_done() if condition else 0
p = self.tree.make_predict(
battery,
distance,
mood,
memory,
dishes_held,
customers,
waiting_for_order,
waiting_for_dish
)
goal_queue.put((p, o.position))
if len(goal_queue.queue):
priority, goal = goal_queue.queue.pop()
if priority:
print(goal, priority, end='\r')
self.appendGoalPosition(goal)
else:
print(goal, priority, end='\r')

View File

@ -13,7 +13,6 @@ class UserController:
pos = pygame.mouse.get_pos()
pos = [pos[0] // engine.square_size,
pos[1] // engine.square_size]
# for o in engine.objects:
# if o.compare_pos(pos):
# o.set_order(engine.action_clock)
engine.appendGoalPosition(pos)
for o in engine.objects:
if o.compare_pos(pos):
o.set_order(engine.action_clock)

View File

@ -0,0 +1,70 @@
import time
from sklearn import tree
import numpy as np
import graphviz
from src.decisionTree.datasetGenerator import generateRawDataset
from src.decisionTree.datasetConverter import convertDataset
class TreeEngine():
def __init__(self):
generateRawDataset()
convertDataset()
# importing the dataset from the disk
train_data_m = np.genfromtxt(
"out/dataset.csv", delimiter=",", skip_header=1)
# Separate the attributes and labels
self.X_train = [data[:-1] for data in train_data_m]
self.y_train = [data[-1] for data in train_data_m]
# Create the decision tree classifier using the ID3 algorithm
self.clf = tree.DecisionTreeClassifier(
criterion='entropy', splitter="best")
# clf = tree.DecisionTreeClassifier(criterion='gini')
# Train the decision tree on the training data
self.clf.fit(self.X_train, self.y_train)
self.exportText()
self.exportPdf()
def exportText(self):
# Visualize the trained decision tree
tree_text = tree.export_text(self.clf, feature_names=[
"Battery level",
"Distance between kitchen and table",
"Customers mood",
"Basket is empty",
"Dish is ready",
"Dish in basket",
"Table status",
"Is actual",
])
with open('out/decision_tree.txt', 'w') as f:
f.write(tree_text) # Save the visualization as a text file
def exportPdf(self):
dot_data = tree.export_graphviz(self.clf, out_file=None, feature_names=[
"Battery level",
"Distance between kitchen and table",
"Customers mood",
"Basket is empty",
"Dish is ready",
"Dish in basket",
"Table status",
"Is actual",
], class_names=[
'High priority',
'Low priority',
'Return to kitchen',
], filled=True, rounded=True)
graph = graphviz.Source(dot_data)
# Save the visualization as a PDF file
graph.render("out/decision_tree")
def make_predict(self, dataset):
return self.clf.predict([dataset])

View File

@ -1,15 +1,17 @@
import csv
def convert_dataset(input_file, output_file):
def convertDataset():
attributes = {
1: ["empty", "low", "medium", "high"],
2: ["empty", "full"],
3: ["none", "available"],
4: ["none", "available"],
5: ["unavailable", "available"],
6: ["low", "medium", "high"],
7: ["no", "yes"],
8: ["no", "yes"]
1: ["low", "high"],
2: ["far", "close"],
3: ['bad', 'good', 'undefined'],
4: ["no", "yes"],
5: ["no", "yes"],
6: ["no", "yes"],
7: ["empty", "new order", "waiting for dish", "have a dish"],
8: ["no", "yes"],
9: ["high priority", "low priority", "return to kitchen"]
}
# Create a mapping dictionary for attribute values
@ -20,10 +22,11 @@ def convert_dataset(input_file, output_file):
converted_dataset = []
# Read the input CSV file
with open(input_file, "r") as csvfile:
with open("out/rawDataset.csv", "r") as csvfile:
reader = csv.reader(csvfile)
header = next(reader) # Skip the header row
converted_dataset.append(header)
# Convert the data rows
for row in reader:
@ -40,15 +43,9 @@ def convert_dataset(input_file, output_file):
converted_dataset.append(converted_row)
# Write the converted dataset to a new CSV file
with open(output_file, "w", newline="") as csvfile:
with open("out/dataset.csv", "w", newline="") as csvfile:
writer = csv.writer(csvfile)
# Write the header row
#writer.writerow(header)
# Write the converted data rows
for row in converted_dataset:
writer.writerow(row)
# Example usage:
convert_dataset("dataset/Dataset.csv", "dataset/converted_dataset.csv")

View File

@ -0,0 +1,111 @@
import csv
from pathlib import Path
def generateRawDataset():
battery_values = ['high', 'low']
distance_values = ['far', 'close']
mood_values = ['undefined', 'good', 'bad']
status_values = ['empty', 'new order', 'waiting for dish', 'have a dish']
other = ['no', 'yes']
training_data = []
training_data.append([
"Battery level",
"Distance between kitchen and table",
"Customers mood",
"Basket is empty",
"Dish is ready",
"Dish in basket",
"Table status",
"Is actual",
"Priority"
])
for battery in battery_values:
for distance in distance_values:
for mood in mood_values:
for basket in other:
for ready in other:
for dish in other:
for status in status_values:
for actual in other:
dataset = buildDataset(
battery,
distance,
mood,
basket,
ready,
dish,
status,
actual
)
training_data.append(dataset)
Path("out/").mkdir(parents=True, exist_ok=True)
with open('out/rawDataset.csv', 'w', newline='') as file:
writer = csv.writer(file)
writer.writerows(training_data)
def buildDataset(b, d, m, e, r, i, s, a) -> list:
dataset = [
b, # battery
d, # distance
m, # mood
e, # basket is empty
r, # ready
i, # dish in basket
s, # status
a, # actual
]
dataset.append(getPriority(dataset))
return dataset
def getPriority(dataset) -> str:
PRIORITY = {
'high': 'high priority',
'low': 'low priority',
'kitchen': 'return to kitchen'
}
BATTERY_LEVEL = dataset[0]
DISTANCE_TO_OBJECT = dataset[1]
MOOD = dataset[2]
BASKET_IS_EMPTY = dataset[3]
DISH_IS_READY = dataset[4]
DISH_IN_BASKET = dataset[5]
STATUS_OF_TABLE = dataset[6]
IS_ACTUAL = dataset[7]
def mood_and_distance() -> str:
if MOOD == "undefined":
return PRIORITY['kitchen']
elif MOOD == "good":
return PRIORITY['low']
elif DISTANCE_TO_OBJECT == "far":
return PRIORITY['high']
else:
return PRIORITY['low']
if BATTERY_LEVEL == "low":
return PRIORITY['kitchen']
elif IS_ACTUAL == "no":
return PRIORITY['high']
elif STATUS_OF_TABLE == "empty" or STATUS_OF_TABLE == "have a dish":
return PRIORITY['kitchen']
elif STATUS_OF_TABLE == "new order":
return mood_and_distance()
elif BASKET_IS_EMPTY == "yes":
return PRIORITY['kitchen']
elif DISH_IS_READY == "no":
return PRIORITY['kitchen']
elif DISH_IN_BASKET == "no":
return PRIORITY['kitchen']
else:
return mood_and_distance()

View File

@ -1,33 +0,0 @@
import csv
import random
battery_values = ['high', 'medium', 'low']
distance_values = ['far', 'medium', 'close']
mood_values = ['good', 'medium', 'bad']
other = ['yes', 'no']
training_data = []
for _ in range(200):
battery = random.choice(battery_values)
distance = random.choice(distance_values)
mood = random.choice(mood_values)
memory = random.randint(0,4)
dishes_held = random.randint(0,4)
"""empty_basket = random.choice(other)
if empty_basket == 'yes':
dish_in_basket = 'no'
else:
dish_in_basket = random.choice(other)
dish_in_basket = random.choice(other)"""
waiting_for_order = random.choice(other)
waiting_for_dish = random.choice(other)
example = [battery, distance, mood, memory, dishes_held, waiting_for_order, waiting_for_dish]
training_data.append(example)
with open('data.csv', 'w', newline='') as file:
writer = csv.writer(file)
writer.writerows(training_data)

View File

@ -37,9 +37,6 @@ class Table(Object):
def is_done(self):
return self.agent_role == "done"
def waiting_for_dish(self):
return self.agent_role in ["wait", "done"]
def get_customers_count(self) -> int:
return self.customers
@ -48,12 +45,12 @@ class Table(Object):
return None
diff = current_time - self.order_time
if diff < 200:
return "good"
elif diff < 400:
return "medium"
if diff < 100:
return (0, "good")
elif diff < 200:
return (1, "medium")
else:
return "bad"
return (2, "bad")
def action(self, waiter):
if self.is_order():

View File

@ -18,92 +18,11 @@ class Waiter(Object):
self.orientation = copy.copy(state.orientation)
self.basket = copy.copy(state.basket)
self.battery -= state.cost
# self.calcTree()
return state
def dish_in_basket(self, table) -> bool:
return table in self.basket
'''
def calcTree(self):
from sklearn import tree
import pandas as pd # for manipulating the csv data
import numpy as np
import os
# importing the dataset from the disk
train_data_m = np.genfromtxt(
"dataset/converted_dataset.csv", delimiter=",", skip_header=1)
X_train = [data[:-1] for data in train_data_m]
y_train = [data[-1] for data in train_data_m]
# Create the decision tree classifier using the ID3 algorithm
clf = tree.DecisionTreeClassifier(criterion='entropy')
# Train the decision tree on the training data
clf.fit(X_train, y_train)
# Visualize the trained decision tree
tree_text = tree.export_text(clf, feature_names=[
'Battery Charge', 'Fullness', 'Ready orders', 'Waiting tables', 'Availability', 'Cleanliness', 'Error'])
with open('decision_tree.txt', 'w') as f:
f.write(tree_text) # Save the visualization as a text file
# Test the decision tree with a new example
# Battery Charge,Fullness,Ready orders,Waiting tables,Availability,Cleanliness,Error
new_example = [self.battery, 0, self.orderReadiness,
self.waitingTables, self.availability, self.cleanliness, self.error]
predicted_label = clf.predict([new_example])
if predicted_label[0] > 0:
result = "YES"
else:
result = "NO"
print("Predicted Label:", result)
def calcTreePDF(self):
from sklearn import tree
import pandas as pd # for manipulating the csv data
import numpy as np
import graphviz
import os
os.environ["PATH"] += os.pathsep + \
'C:/Program Files (x86)/Graphviz/bin/'
# importing the dataset from the disk
train_data_m = np.genfromtxt(
"dataset/converted_dataset.csv", delimiter=",", skip_header=1)
X_train = [data[:-1] for data in train_data_m]
y_train = [data[-1] for data in train_data_m]
# Create the decision tree classifier using the ID3 algorithm
clf = tree.DecisionTreeClassifier(criterion='entropy')
# Train the decision tree on the training data
clf.fit(X_train, y_train)
# Visualize the trained decision tree
tree_text = tree.export_text(clf, feature_names=[
'Battery Charge', 'Fullness', 'Ready orders', 'Waiting tables', 'Availability', 'Cleanliness', 'Error'])
with open('decision_tree.txt', 'w') as f:
f.write(tree_text) # Save the visualization as a text file
dot_data = tree.export_graphviz(clf, out_file=None, feature_names=[
'Battery Charge', 'Fullness', 'Ready orders', 'Waiting tables', 'Availability', 'Cleanliness', 'Error'], class_names=['NO', 'YES'], filled=True, rounded=True)
graph = graphviz.Source(dot_data)
graph.render("decision_tree") # Save the visualization as a PDF file
# Test the decision tree with a new example
# Battery Charge,Fullness,Ready orders,Waiting tables,Availability,Cleanliness,Error
new_example = [self.battery, 0, self.orderReadiness,
self.waitingTables, self.availability, self.cleanliness, self.error]
predicted_label = clf.predict([new_example])
if predicted_label[0] > 0:
result = "YES"
else:
result = "NO"
print("Predicted Label:", result)
'''
def basket_is_full(self) -> bool:
return self.basket_size == 0
@ -140,11 +59,11 @@ class Waiter(Object):
def battary_status(self) -> str:
if self.battery >= 200:
return "hight"
return (2, "hight")
elif self.battery >= 100:
return "medium"
return (1, "medium")
else:
return "low"
return (0, "low")
def recharge(self):
self.battery = 300