From 9a7bb764d40b9bb65131b4fa64d88e6b16a4d844 Mon Sep 17 00:00:00 2001 From: Jean-Marc Valin <jmvalin@amazon.com> Date: Wed, 27 Sep 2023 13:01:21 -0400 Subject: [PATCH] No features skip needed to align pitch features --- dnn/torch/neural-pitch/models.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/dnn/torch/neural-pitch/models.py b/dnn/torch/neural-pitch/models.py index a3819785e..6822353e8 100644 --- a/dnn/torch/neural-pitch/models.py +++ b/dnn/torch/neural-pitch/models.py @@ -189,9 +189,6 @@ class loader(torch.utils.data.Dataset): class loader_joint(torch.utils.data.Dataset): def __init__(self, features, file_pitch, confidence_threshold = 0.4,context = 100, choice_data = 'both'): self.feat = np.memmap(features, mode='r', dtype=np.int8).reshape(-1,312) - #Skip first first two frames for dump_data to sync with CREPE - self.feat = self.feat[2:,:] - self.xcorr = self.feat[:,:224] self.if_feat = self.feat[:,224:] ground_truth = np.memmap(file_pitch, mode='r', dtype=np.float32).reshape(-1,2) -- GitLab