-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.py
38 lines (31 loc) · 898 Bytes
/
Config.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
# Configuration for Utils.py
RAW_DATA_PATH = 'Data/RawData/'
PREPROCESSED_DATA_PATH = 'Data/PreprocessedData/'
RAW_DATA_CSV_HEADER = ['Timestamp', 'Confidence', 'Diameter', 'Event']
# Configuration for ReadRawPupilData.py
EVENT_DEFAULT = 'default'
EVENT_SITTING = 'sitting'
EVENT_WALKING = 'walking'
EVENT_READING_SITTING = 'reading-sitting'
EVENT_READING_WALKING = 'reading-walking'
KEY_SITTING = 's'
KEY_WALKING = 'w'
KEY_READING_SITTING = 'r'
KEY_READING_WALKING = 'g'
# Configuration for main.py
# Mobile and reading
WALK_SIMPATH = 'walk_simpath'
WALK_STAIRPATH = 'walk_stairpath'
STAND = 'stand'
HARD = 'hard'
EASY = 'easy'
NOREAD = 'noread'
# N-BACK audio: https://dualn-back.com/
NOBACK = 'nothing'
ONEBACK ='ONEBACK'
TWOBACK = 'TWOBACK'
THREEBACK = 'THREEBACK'
# Luminance condition
LOWLUX = 'lowlux'
MIDDLELUX = 'middlelux'
HIGHLUX = 'highlux'