Spaces:
Running
on
Zero
Running
on
Zero
#!/bin/bash | |
mode: 'inference' | |
use_cuda: 1 # 1 for True, 0 for False | |
num_gpu: 1 | |
sampling_rate: 16000 | |
network: "FRCRN_SE_16K" ##network type | |
checkpoint_dir: "checkpoints/FRCRN_SE_16K" | |
#input_path: "data/cv_webrtc_test_set_20200521_16k.scp" # an input dir or input scp file | |
input_path: "/home/shengkui.zhao/DingTalk_NS/data/webrtc_test_set_20200521_16k/noisy" | |
output_dir: "outputs/FRCRN_SE_16K" ## output dir to store processed audio | |
# decode parameters | |
one_time_decode_length: 120 #maximum segment length for one-pass decoding (seconds), longer audio will use segmented decoding | |
decode_window: 1 #one-pass decoding length | |
# | |
# FFT parameters | |
win_type: 'hanning' | |
win_len: 640 | |
win_inc: 320 | |
fft_len: 640 | |