You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PaddleSpeech/audio/tests/features/test_kaldi_feat.py

56 lines
2.0 KiB

# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#import platform
import unittest
import kaldiio
import numpy as np
from kaldiio import ReadHelper
from paddleaudio.kaldi import fbank as fbank
#from paddleaudio.kaldi import pitch as pitch
# the groundtruth feats computed in kaldi command below.
#compute-fbank-feats --dither=0 scp:$wav_scp ark,t:fbank_feat.ark
#compute-kaldi-pitch-feats --sample-frequency=16000 scp:$wav_scp ark,t:pitch_feat.ark
class TestKaldiFbank(unittest.TestCase):
def test_fbank(self):
fbank_groundtruth = {}
with ReadHelper('ark:testdata/fbank_feat.ark') as reader:
for key, feat in reader:
fbank_groundtruth[key] = feat
wav_rate, wav = kaldiio.wavio.read_wav('testdata/test.wav')
fbank_feat = fbank(wav)
fbank_check = fbank_groundtruth['test_wav']
np.testing.assert_array_almost_equal(fbank_feat, fbank_check, decimal=4)
#def test_pitch(self):
# pitch_groundtruth = {}
# if platform.system() != "Linux":
# pass
# with ReadHelper('ark:testdata/pitch_feat.ark') as reader:
# for key, feat in reader:
# pitch_groundtruth[key] = feat
# wav_rate, wav = kaldiio.wavio.read_wav('testdata/test.wav')
# pitch_feat = pitch(wav)
# pitch_check = pitch_groundtruth['test_wav']
# np.testing.assert_array_almost_equal(pitch_feat, pitch_check, decimal=4)
if __name__ == '__main__':
unittest.main()