From cb0680e8c49ffa23d2fb7857d1a3fd39d6e48ac1 Mon Sep 17 00:00:00 2001 From: Yibing Liu Date: Thu, 20 Jul 2017 11:47:46 +0800 Subject: [PATCH] follow comments to modify README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 24f0b3c3..3010c0e5 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,13 @@ python datasets/librispeech/librispeech.py --help python compute_mean_std.py ``` -`python compute_mean_std.py` computes mean and stdandard deviation for audio features, and save them to a file with a default name `./mean_std.npz`. This file will be used in both training and inferencing. The default feature of audio data is power spectrum, currently the mfcc feature is also supported. To train and infer based on mfcc feature, you can regenerate this file by +It will compute mean and stdandard deviation for audio features, and save them to a file with a default name `./mean_std.npz`. This file will be used in both training and inferencing. The default feature of audio data is power spectrum, and the mfcc feature is also supported. To train and infer based on mfcc feature, please generate this file by ``` python compute_mean_std.py --specgram_type mfcc ``` -and specify the ```specgram_type``` to ```mfcc``` in each step, including training, inference etc. +and specify ```--specgram_type mfcc``` when running train.py, infer.py, evaluator.py or tune.py. More help for arguments: