yeyupiaoling / VoiceprintRecognition-Pytorch

This project uses a variety of advanced voiceprint recognition models such as EcapaTdnn, ResNetSE, ERes2Net, CAM++, etc. It is not excluded that more models will be supported in the future. At the same time, this project also supports MelSpectrogram, Spectrogram data preprocessing methods
Apache License 2.0
777 stars 124 forks source link

MFCC的feature_conf是什么在configs/ecapa_tdnn.yml文件里面 #43

Closed eeric closed 1 year ago

yeyupiaoling commented 1 year ago
preprocess_conf:
  # 音频预处理方法,支持:MelSpectrogram、Spectrogram、MFCC
  feature_method: 'MFCC'

# MFCC的参数,其他的预处理方法查看对应API设设置参数
feature_conf:
  sample_rate: 16000
  n_fft: 1024
  hop_length: 320
  win_length: 1024
  f_min: 50.0
  f_max: 14000.0
  n_mels: 64
  n_mfcc: 40