-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsettings.py
36 lines (26 loc) · 1.01 KB
/
settings.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
import os
Fs=80
home_dir=os.path.expanduser("~")
data_dir=os.path.join(home_dir,"data/ppg")
try:
base_dir=os.path.dirname(os.path.realpath(__file__))
except:
pass
weights_dir=os.path.join(data_dir,"results/weights")
checkpoint_dir=os.path.join(home_dir,"data/logs/ppg/")
output_dir=os.path.join(data_dir,"results/outputs")
segment_length=10
segment_slide=2
clinical_predictors=[
'Weight-Height Z score',
'MUAC (Mid-upper arm circumference) cm',
'Temperature (degrees celsius)',
'Respiratory rate- RR (per minute)', 'Oxygen saturation',
'Heart rate(HR) ', 'Length of illness (days)', 'Fever','Cough',
'Difficulty breathing', 'Diarrhoea','Vomiting ','Difficulty feeding',
'Convulsions','Jaundice', 'Visible severe wasting', 'Stridor',
'Obstructed breathing ', 'Absent breathing(apnoea)',
'Central cyanosis', 'Indrawing', 'Grunting', 'Acidotic breathing',
'Wheeze', 'Flaring of alae nasi', 'Head nodding/bobbing',
'Peripheral Pulse', 'Cap refill', 'Pallor / Anaemia',
]