-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvaluation.py
More file actions
188 lines (135 loc) · 6.17 KB
/
Evaluation.py
File metadata and controls
188 lines (135 loc) · 6.17 KB
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
# These metrics were adapted from TabCNNs evaluation metrics
# https://github.com/andywiggins/tab-cnn/blob/master/model/Metrics.py
import numpy as np
def convertTabToPitchVector(tab):
"""
Converts a guitar tablature representation to a pitch vector representation.
Args:
tab (numpy.ndarray): A 6x21 array representing the guitar tablature, where each row
corresponds to a string, and each column corresponds to a fret position.
Returns:
numpy.ndarray: A 44-dimensional vector representing the pitch classes, with 1 indicating
the presence of a pitch class and 0 otherwise.
"""
pitch_vector = np.zeros(44)
string_pitches = [40, 45, 50, 55, 59, 64] # MIDI pitches for open strings
for string_num, fret_vector in enumerate(tab):
# Index of the highest activated fret
fret_class = np.argmax(fret_vector)
if fret_class > 0: # If the string is not open
# Calculate pitch class index
pitch_num = fret_class + string_pitches[string_num] - 41
pitch_vector[pitch_num] = 1
return pitch_vector
def convertTabToBinary(tab):
"""
Converts a guitar tablature representation to a binary representation.
Args:
tab (numpy.ndarray): A 6x21 array representing the guitar tablature, where each row
corresponds to a string, and each column corresponds to a fret position.
Returns:
numpy.ndarray: A 6x20 array representing the binary tablature, where each row corresponds
to a string, and each column corresponds to a fret position (excluding the
open string position).
"""
tab_arr = np.zeros((6, 20))
for string_num, fret_vector in enumerate(tab):
# Index of the highest activated fret
fret_class = np.argmax(fret_vector)
if fret_class > 0: # If the string is not open
fret_num = fret_class - 1 # Convert fret class to fret number
tab_arr[string_num, fret_num] = 1
return tab_arr
def pitch_precision(pred, gt):
"""
Calculates the precision of the pitch class predictions.
Args:
pred (numpy.ndarray): A list of 6x21 arrays representing the predicted guitar tablature.
gt (numpy.ndarray): A list of 6x21 arrays representing the ground truth guitar tablature.
Returns:
float: The precision of the pitch class predictions.
"""
pitch_pred = np.array([convertTabToPitchVector(p) for p in pred])
pitch_gt = np.array([convertTabToPitchVector(gt) for gt in gt])
numerator = np.sum(np.multiply(pitch_pred, pitch_gt).flatten())
denominator = np.sum(pitch_pred.flatten())
return numerator / denominator
def pitch_recall(pred, gt):
"""
Calculates the recall of the pitch class predictions.
Args:
pred (numpy.ndarray): A list of 6x21 arrays representing the predicted guitar tablature.
gt (numpy.ndarray): A list of 6x21 arrays representing the ground truth guitar tablature.
Returns:
float: The recall of the pitch class predictions.
"""
pitch_pred = np.array([convertTabToPitchVector(p) for p in pred])
pitch_gt = np.array([convertTabToPitchVector(gt) for gt in gt])
numerator = np.sum(np.multiply(pitch_pred, pitch_gt).flatten())
denominator = np.sum(pitch_gt.flatten())
return numerator / denominator
def pitch_f_measure(pred, gt):
"""
Calculates the F-measure of the pitch class predictions.
Args:
pred (numpy.ndarray): A list of 6x21 arrays representing the predicted guitar tablature.
gt (numpy.ndarray): A list of 6x21 arrays representing the ground truth guitar tablature.
Returns:
float: The F-measure of the pitch class predictions.
"""
p = pitch_precision(pred, gt)
r = pitch_recall(pred, gt)
return (2 * p * r) / (p + r)
def tab_precision(pred, gt):
"""
Calculates the precision of the binary tablature predictions.
Args:
pred (numpy.ndarray): A list of 6x21 arrays representing the predicted guitar tablature.
gt (numpy.ndarray): A list of 6x21 arrays representing the ground truth guitar tablature.
Returns:
float: The precision of the binary tablature predictions.
"""
tab_pred = np.array([convertTabToBinary(p) for p in pred])
tab_gt = np.array([convertTabToBinary(gt) for gt in gt])
numerator = np.sum(np.multiply(tab_pred, tab_gt).flatten())
denominator = np.sum(tab_pred.flatten())
return numerator / denominator
def tab_recall(pred, gt):
"""
Calculates the recall of the binary tablature predictions.
Args:
pred (numpy.ndarray): A list of 6x21 arrays representing the predicted guitar tablature.
gt (numpy.ndarray): A list of 6x21 arrays representing the ground truth guitar tablature.
Returns:
float: The recall of the binary tablature predictions.
"""
tab_pred = np.array([convertTabToBinary(p) for p in pred])
tab_gt = np.array([convertTabToBinary(gt) for gt in gt])
numerator = np.sum(np.multiply(tab_pred, tab_gt).flatten())
denominator = np.sum(tab_gt.flatten())
return numerator / denominator
def tab_f_measure(pred, gt):
"""
Calculates the F-measure of the binary tablature predictions.
Args:
pred (numpy.ndarray): A list of 6x21 arrays representing the predicted guitar tablature.
gt (numpy.ndarray): A list of 6x21 arrays representing the ground truth guitar tablature.
Returns:
float: The F-measure of the binary tablature predictions.
"""
p = tab_precision(pred, gt)
r = tab_recall(pred, gt)
return (2 * p * r) / (p + r)
def tab_disamb(pred, gt):
"""
Calculates the disambiguation ratio between the binary tablature precision and
the pitch class precision.
Args:
pred (numpy.ndarray): A list of 6x21 arrays representing the predicted guitar tablature.
gt (numpy.ndarray): A list of 6x21 arrays representing the ground truth guitar tablature.
Returns:
float: The ratio of binary tablature precision to pitch class precision.
"""
tp = tab_precision(pred, gt)
pp = pitch_precision(pred, gt)
return tp / pp