Path: blob/master/preprocess/kss_preprocess.yaml
1558 views
###########################################################1# FEATURE EXTRACTION SETTING #2###########################################################3sampling_rate: 22050 # Sampling rate.4fft_size: 1024 # FFT size.5hop_size: 256 # Hop size. (fixed value, don't change)6win_length: null # Window length.7# If set to null, it will be the same as fft_size.8window: "hann" # Window function.9num_mels: 80 # Number of mel basis.10fmin: 80 # Minimum freq in mel basis calculation.11fmax: 7600 # Maximum frequency in mel basis calculation.12global_gain_scale: 1.0 # Will be multiplied to all of waveform.13trim_silence: true # Whether to trim the start and end of silence.14trim_threshold_in_db: 30 # Need to tune carefully if the recording is not good.15trim_frame_size: 2048 # Frame size in trimming.16trim_hop_size: 512 # Hop size in trimming.17format: "npy" # Feature file format. Only "npy" is supported.18192021