From d62092ac289ec8adbbff5ca2126a459449367e1f Mon Sep 17 00:00:00 2001 From: Hui Zhang Date: Mon, 8 Nov 2021 06:02:41 +0000 Subject: [PATCH] fix specaug param --- examples/librispeech/s1/conf/preprocess.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/librispeech/s1/conf/preprocess.yaml b/examples/librispeech/s1/conf/preprocess.yaml index dd4cfd27..bcbc7ad2 100644 --- a/examples/librispeech/s1/conf/preprocess.yaml +++ b/examples/librispeech/s1/conf/preprocess.yaml @@ -10,19 +10,19 @@ process: cmvn_path: data/mean_std.json # these three processes are a.k.a. SpecAugument - type: time_warp - max_time_warp: 5 + max_time_warp: 0 inplace: true mode: PIL - type: freq_mask - F: 30 + F: 10 n_mask: 2 inplace: true - replace_with_zero: false + replace_with_zero: true - type: time_mask - T: 40 + T: 50 n_mask: 2 inplace: true - replace_with_zero: false + replace_with_zero: true