-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
31 lines (28 loc) · 937 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
############## Please REFER TO THE PAPER FOR UNDERSTANDING FEATURES USED HERE #####################
FEATURES_LIST = [
'pitch',
'onset_time',
'offset_time',
'velocity',
'duration',
'ioi', #Inter onset interval
'otd', #Offset time duration
# <----- Deviation Features ----->
# 'onset_time_dev',
# 'offset_time_dev',
# 'velocity_dev',
# 'duration_dev',
# 'ioi_dev',
# 'otd_dev'
]
PERFROMER = [
"Alfred Brendel",
"Claudio Arrau",
"Daniel Barenboim",
"Friedrich Gulda",
"Sviatoslav Richter",
"Wilhelm Kempff"
]
############### PARAMETERS FOR QUANTIZATION ###################
DEFAULT_LOADING_PROGRAMS = range(128)
MIN_VELOCITY = 10