Path: blob/master/preprocess/ljspeechu_preprocess.yaml
1558 views
###########################################################1# FEATURE EXTRACTION SETTING #2###########################################################3sampling_rate: 44100 # Sampling rate.4fft_size: 2048 # FFT size.5hop_size: 512 # Hop size. (fixed value, don't change)6win_length: 2048 # 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: 20 # Minimum freq in mel basis calculation.11fmax: 11025 # Maximum frequency in mel basis calculation.12global_gain_scale: 1.0 # Will be multiplied to all of waveform.13trim_silence: false # Whether to trim the start and end of silence14trim_threshold_in_db: 60 # 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.18trim_mfa: false1920