-
Notifications
You must be signed in to change notification settings - Fork 0
/
anemia_expert.py
380 lines (293 loc) · 14 KB
/
anemia_expert.py
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
from experta import *
from colorama import Fore
from anemia_data import anemia_data
from doctor_csp import doctor_csp
from pharmacy_csp import pharmacy_csp
from anemia_ontology import anemia_ontology
# valori di emoglobina soglia
ANEMIA_MALE_VALUE = 13.5
ANEMIA_FEMALE_VALUE = 12
# valori dell'MCH, MCHC, MCV
MAX_MCH_VALUE = 32 # macrocitica
MIN_MCH_VALUE = 26 # ipocromica-microcitica
MAX_MCHC_VALUE = 36 # anemia falciforme
MIN_MCHC_VALUE = 32 # ipocromica
MAX_MCV_VALUE = 100 # macrocitica
MIN_MCV_VALUE = 80 # microcitica
def reset_color():
print(Fore.RESET)
def valid_response(response: str):
valid = False
response = response.lower()
# modificato aggiungendo il sesso nelle valid response
if response == "si" or response == "no":
valid = True
if response == 'm' or response == 'f':
valid = True
return valid
def valid_test_hb_value(test_value: float):
valid = False
if test_value <= 20:
valid = True
return valid
class anemia_expert(KnowledgeEngine):
@DefFacts()
def _initial_action(self):
yield Fact(inizio="si")
self.mean_anemia_tests = anemia_data().get_medium_values_anemia()
self.number_prints = 0
self.flag_no_symptoms = 0
self.doc_analysis = doctor_csp("Studio del medico convenzionato")
self.doc_analysis.addConstraint(lambda day, hours: hours >= 8 and hours <= 14 if day ==
"lunedi" else hours >= 15 and hours <= 20 if day == "giovedi" else None, ["day", "hours"])
self.pharmacy_analysis = pharmacy_csp()
self.pharmacy_analysis.addConstraint(lambda farmaco, quantita: quantita <= 2 if farmaco in [
"vitamina_b12", "integratore_ferro", "paracetamolo", "integratore_biotina", "vitamina_c"] else None, ["farmaci", "quantita"])
def print_facts(self):
print("\n\nL'agente ragiona con i seguenti fatti: \n")
print(self.facts)
def _prototype_doc_booking(self, ask_text: str, doc_selected: doctor_csp):
print(
"Vuoi prenotare un appuntamento presso un medico convenzionato? [si/no]")
response = str(input())
while valid_response(response) == False:
print(
"Vuoi prenotare un appuntamento presso un medico convenzionato? [si/no]")
response = str(input())
if response == "si":
first, last = doc_selected.get_availability()
print("Insersci un turno inserendo il numero del turno associato")
turn_input = int(input())
while turn_input < first or turn_input > last:
print("Insersci un turno inserendo il numero del turno associato")
turn_input = int(input())
doc_selected.print_single_availability(turn_input)
def _prototype_ask_symptom(self, ask_text: str, fact_declared: Fact):
print(ask_text)
response = str(input())
while valid_response(response) == False:
print(ask_text)
response = str(input())
if response == "si":
self.declare(fact_declared)
return response
@Rule(Fact(inizio="si"))
def rule_1(self):
print(Fore.CYAN + "\nInizio della diagnosi...\n")
reset_color()
self.declare(Fact(chiedi_sintomi="si"))
@Rule(Fact(chiedi_esami_emoglobina="si"))
def rule_2(self):
print("Hai eseguito un test dell'emoglobina?")
hb_test = str(input())
while valid_response(hb_test) == False:
print("Hai eseguito un test dell'emoglobina?")
hb_test = str(input())
if hb_test == "si":
self.declare(Fact(test_emoglobina="si"))
else:
self.declare(Fact(test_emoglobina="no"))
if hb_test == "no":
self.declare(Fact(prenotazione_turno_medico="si"))
@Rule(Fact(chiedi_esami_tipo_anemia='si'))
def rule_7(self):
# chiedi se ha eseguito un test per l'MCH e se non lo fa , lui prenota il medico
print("Hai eseguito un test dell\'MCH")
mch_test = str(input())
while valid_response(mch_test) == False:
print("Hai eseguito un test dell\'MCH")
mch_test = str(input())
if mch_test == "si":
print('Inserisci il valore di MCH')
MCH_value = float(input())
if (MCH_value < MIN_MCH_VALUE):
print(Fore.RED + "i valori di MCH sono al di sotto del valore minimo")
reset_color()
elif (MCH_value > MAX_MCH_VALUE):
print(Fore.RED +"i valori di MCH sono al di sopra del valore massimo")
reset_color()
else:
print(Fore.GREEN +"i valori sono nella norma")
reset_color()
else:
self.declare(Fact(prenotazione_turno_medico="si"))
# chiedi se ha eseguito un test per l'MCHC e se non lo fa , lui prenota il medico
print("Hai eseguito un test dell\'MCHC")
mchc_test = str(input())
while valid_response(mchc_test) == False:
print("Hai eseguito un test dell\'MCHC")
mchc_test = str(input())
if mchc_test == "si":
print('Inserisci il valore di MCHC')
MCHC_value = float(input())
if (MCHC_value < MIN_MCHC_VALUE):
print(Fore.RED +"i valori di MCHC sono al di sotto del valore minimo")
reset_color()
elif (MCHC_value > MAX_MCHC_VALUE):
print(Fore.RED +"i valori di MCHC sono al di sopra del valore massimo")
reset_color()
else:
print(Fore.GREEN +"i valori sono nella norma")
reset_color()
else:
self.declare(Fact(prenotazione_turno_medico="si"))
# chiedi se ha eseguito un test per l'MCV e se non lo fa , lui prenota il medico
print("Hai eseguito un test dell\'MCV")
mcv_test = str(input())
while valid_response(mcv_test) == False:
print("Hai eseguito un test dell\'MCV")
mcv_test = str(input())
if mcv_test == "si":
print('Inserisci il valore di MCV')
MCV_value = float(input())
if (MCV_value < MIN_MCV_VALUE):
print(Fore.RED +"i valori di MCV sono al di sotto del valore minimo")
reset_color()
elif (MCV_value > MAX_MCV_VALUE):
print(Fore.RED +"i valori di MCV sono al di sopra del valore massimo")
reset_color()
else:
print("i valori sono nella norma")
else:
self.declare(Fact(prenotazione_turno_medico="si"))
@Rule(Fact(prenotazione_turno_medico="si"))
def prenotazione_turno(self):
self._prototype_doc_booking(
"prenotazione dal medico", self.doc_analysis)
@Rule(Fact(chiedi_prenotazione_farmaci='si'))
def rule_8(self):
self.prenota_farmaci("prenotazione farmaci", self.pharmacy_analysis)
def prenota_farmaci(self, ask_text: str, pharmacy_selected: pharmacy_csp):
print("Vuoi prenotare farmaci presso una farmacia convenzionata? [si/no]")
response = str(input())
while valid_response(response) == False:
print("Vuoi prenotare farmaci presso una farmacia convenzionata? [si/no]")
response = str(input())
if response == "si":
farmaci_disponibili = pharmacy_selected.prenota_farmaco()
if len(farmaci_disponibili) > 0:
print("Farmaci disponibili:\n")
for index, farmaco in enumerate(farmaci_disponibili):
farmaco_nome, farmaco_quantita = farmaco
print("%d. Farmaco: %s, Quantità: %d" % (index + 1, farmaco_nome, farmaco_quantita))
print("Inserisci il numero del farmaco da prenotare")
choice_input = int(input())
while choice_input < 1 or choice_input > len(farmaci_disponibili):
print("Inserisci un numero valido")
choice_input = int(input())
selected_farmaco = farmaci_disponibili[choice_input - 1]
selected_farmaco_nome, selected_farmaco_quantita = selected_farmaco
print("Hai prenotato il farmaco: %s, Quantità: %d" % (selected_farmaco_nome, selected_farmaco_quantita))
else:
print("Nessun farmaco disponibile.")
@Rule(Fact(test_emoglobina="si"))
def rule_3(self):
isAnemia = False
sesso = input("Il soggetto e' maschio o femmina? [m/f]\n")
while (valid_response(sesso) == False):
sesso = input("Il soggetto e' maschio o femmina? [m/f]\n")
if (sesso == 'm'):
print("Inserisci il valore del test dell'emoglobina")
test_value = float(input())
while valid_test_hb_value(test_value) == False:
print("Inserisci il valore del test dell'emoglobina")
test_value = float(input())
if test_value < ANEMIA_MALE_VALUE:
isAnemia = True
else:
isAnemia = False
elif (sesso == 'f'):
print("Inserisci il valore del test")
test_value = float(input())
while valid_test_hb_value(test_value) == False:
print("Inserisci il valore del test")
test_value = float(input())
if test_value < ANEMIA_FEMALE_VALUE:
isAnemia = True
else:
isAnemia = False
if (isAnemia == True):
print(Fore.RED + 'Il valore di emoglobina è al di sotto del valore minimo. Hai l\'anemia')
reset_color()
self.declare(Fact(chiedi_prenotazione_farmaci='si'))
self.declare(Fact(chiedi_esami_tipo_anemia='si'))
else:
print(Fore.GREEN+'Il valore di emoglobina è maggiore del valore minimo. Non hai l\'anemia')
reset_color()
@Rule(Fact(chiedi_sintomi="si"))
def rule_5(self):
r1 = self._prototype_ask_symptom(
"Ti affatichi molto più del solito quando fai attività motoria? [si/no]", Fact(affaticamento_motorio="si"))
r2 = self._prototype_ask_symptom(
"Soffri di dolori alla testa ultimamente? (cefalea) [si/no]", Fact(mal_di_testa="si"))
r3 = self._prototype_ask_symptom(
"La tua pelle e' pallida? [si/no]", Fact(pallore_pelle="si"))
r4 = self._prototype_ask_symptom(
"Avverti una sensazione di freddo? [si/no]", Fact(sensazione_freddo="si"))
r5 = self._prototype_ask_symptom(
"Ti senti molto stanco? [si/no]", Fact(stanchezza="si"))
r6 = self._prototype_ask_symptom(
"Le tue unghie sono molto fragili? [si/no]", Fact(unghie_fragili="si"))
if r1 == "no" and r2 == "no" and r3 == "no" and r4 == "no" and r5 == "no" and r6 == "no":
self.flag_no_symptoms = 1 # non ci sono i sintomi
@Rule(AND(Fact(affaticamento_motorio="si"), Fact(mal_di_testa="si"), Fact(pallore_pelle="si"), Fact(sensazione_freddo="si"), Fact(stanchezza="si"), Fact(unghie_fragili="si")))
def all_anemia_symptoms(self):
print(Fore.RED+"Sembra che tu abbia TUTTI i sintomi dell'anemia")
reset_color()
self.declare(Fact(tutti_sintomi="si"))
self.declare(Fact(chiedi_esami_emoglobina="si"))
@Rule(AND(Fact(affaticamento_motorio="si"), Fact(mal_di_testa="si"), Fact(pallore_pelle="si"), Fact(sensazione_freddo="si"), Fact(stanchezza="si"), Fact(unghie_fragili="si"), Fact(anemia="si")))
def all_anemia_diagnosis_3(self):
print(Fore.RED + "Potresti avere l'anemia")
reset_color()
self.declare(Fact(anemia_tutti_sintomi="si"))
@Rule(NOT(AND(Fact(affaticamento_motorio="si"), Fact(mal_di_testa="si"), Fact(pallore_pelle="si"), Fact(sensazione_freddo="si"), Fact(stanchezza="si"), Fact(unghie_fragili="si"))))
def not_symptoms(self):
if self.number_prints == 0 and self.flag_no_symptoms == 1:
print(Fore.GREEN + "Non hai alcun sintomo dell'anemia")
self.declare(Fact(niente_sintomi="si"))
reset_color()
self.number_prints = self.number_prints + 1
@Rule(NOT(OR(Fact(diagnosi_anemia="si"), Fact(anemia_tutti_sintomi="si"), Fact(tutti_sintomi="si"))))
def intermediate_case(self):
if self.flag_no_symptoms != 1:
print(Fore.YELLOW + "Potresti avere l'anemia")
self.declare(Fact(diagnosi_anemia_incerta="si"))
reset_color()
self.declare(Fact(chiedi_esami_emoglobina='si'))
def main_agent():
expert_agent = anemia_expert()
expert_agent.reset()
expert_agent.run()
expert_agent.print_facts()
def main_ontology():
do = anemia_ontology()
do.get_symptoms_descriptions()
symptoms, keys_symptoms = do.print_symptoms()
print("\nSeleziona il sintomo di cui vuoi conosere la descrizione e un possibile trattamento, inserisci il numero del sintomo")
symptom_number = int(input())
while symptom_number not in symptoms.keys():
print("\nSeleziona il sintomo di cui vuoi conosere la descrizione e un possibile trattamento, inserisci il numero del sintomo")
symptom_number = int(input())
print("Sintomo: %s, descrizione: %s" %
(keys_symptoms[symptom_number], " ".join(symptoms[symptom_number])))
if __name__ == '__main__':
exit_program = False
# cambiare il printf con un'altra formula di benvenuto
print("Benvenuto in Anemia Expert, un sistema esperto per la diagnosi e la cura del anemia")
while exit_program == False:
print(
"\n[1] Mostra i possibili sintomi del'anemia\n[2] Esegui una diagnosi\n[3] Esci")
user_choose = None
try:
user_choose = int(input())
except ValueError:
exit_program = True
if user_choose == 1:
main_ontology()
elif user_choose == 2:
main_agent()
else:
print("Uscita dal programma...")
exit_program = True
print("\n\n")