forked from Dream-High/RMVPE
-
Notifications
You must be signed in to change notification settings - Fork 11
/
evaluate.py
51 lines (42 loc) · 2.13 KB
/
evaluate.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
import numpy as np
import torch
from tqdm import tqdm
from collections import defaultdict
from src import to_local_average_cents, bce, SAMPLE_RATE, WINDOW_LENGTH
from mir_eval.melody import raw_pitch_accuracy, to_cent_voicing, raw_chroma_accuracy, overall_accuracy
from mir_eval.melody import voicing_recall, voicing_false_alarm
import torch.nn.functional as F
def evaluate(dataset, model, hop_length, device, pitch_th=0.03):
metrics = defaultdict(list)
for data in dataset:
mel = data['mel'].to(device)
n_frames = mel.shape[-1]
mel = F.pad(mel, (0, 32 * ((n_frames - 1) // 32 + 1) - n_frames), mode='reflect')
pitch_pred = model(mel.unsqueeze(0)).squeeze(0)
pitch_label = data['pitch'].to(device)
pitch_pred = pitch_pred[ : pitch_label.shape[0]]
loss = bce(pitch_pred, pitch_label)
metrics['loss'].append(loss.item())
cents_pred = to_local_average_cents(pitch_pred.cpu().numpy(), None, pitch_th)
# cents_pred = to_viterbi_cents(pitch_pred.cpu().numpy())
# print()
cents_label = to_local_average_cents(pitch_label.cpu().numpy(), None, pitch_th)
# cents_label = to_viterbi_cents(pitch_label.cpu().numpy())
# print()
freq_pred = np.array([10 * (2 ** (cent_pred / 1200)) if cent_pred else 0 for cent_pred in cents_pred])
freq = np.array([10 * (2 ** (cent / 1200)) if cent else 0 for cent in cents_label])
time_slice = np.array([i*hop_length*1000/SAMPLE_RATE for i in range(len(cents_label))])
ref_v, ref_c, est_v, est_c = to_cent_voicing(time_slice, freq, time_slice, freq_pred)
rpa = raw_pitch_accuracy(ref_v, ref_c, est_v, est_c)
rca = raw_chroma_accuracy(ref_v, ref_c, est_v, est_c)
oa = overall_accuracy(ref_v, ref_c, est_v, est_c)
vfa = voicing_false_alarm(ref_v, est_v)
vr = voicing_recall(ref_v, est_v)
metrics['RPA'].append(rpa)
metrics['RCA'].append(rca)
metrics['OA'].append(oa)
metrics['VFA'].append(vfa)
metrics['VR'].append(vr)
# if rpa < 0.9:
print(data['file'], ':\t', rpa, '\t', oa)
return metrics