Skip to content
Snippets Groups Projects
Commit b2159ce3 authored by Dogan Can's avatar Dogan Can
Browse files

sandbox/online: Remove leftover code.

git-svn-id: https://svn.code.sf.net/p/kaldi/code/sandbox/online@3917 5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8
parent 0838782f
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,6 @@
. cmd.sh
set -e # exit on error
# mfccdir should be some place with a largish disk where you
# want to store MFCC features.
featdir=mfcc
# call the next line with the directory where the RM data is
......@@ -20,7 +17,6 @@ local/rm_data_prep.sh /export/corpora5/LDC/LDC93S3A/rm_comp
utils/prepare_lang.sh data/local/dict '!SIL' data/local/lang data/lang
local/rm_prepare_grammar.sh # Traditional RM grammar (bigram word-pair)
local/rm_prepare_grammar_ug.sh # Unigram grammar (gives worse results, but
# changes in WER will be more significant.)
......@@ -30,9 +26,9 @@ local/rm_prepare_grammar_ug.sh # Unigram grammar (gives worse results, but
featdir=mfcc
for x in test_mar87 test_oct87 test_feb89 test_oct89 test_feb91 test_sep92 train; do
steps/make_mfcc.sh --nj 8 --cmd "run.pl" data/$x exp/make_mfcc/$x $featdir
steps/compute_cmvn_stats.sh data/$x exp/make_mfcc/$x $featdir
#steps/make_plp.sh data/$x exp/make_plp/$x $featdir
steps/make_mfcc.sh --nj 8 --cmd "run.pl" data/$x exp/make_feat/$x $featdir
#steps/make_plp.sh --nj 8 --cmd "run.pl" data/$x exp/make_feat/$x $featdir
steps/compute_cmvn_stats.sh data/$x exp/make_feat/$x $featdir
done
# Make a combined data dir where the data from all the test sets goes-- we do
......@@ -40,7 +36,7 @@ done
# regenerate the CMVN stats as one of the speakers appears in two of the
# test sets; otherwise tools complain as the archive has 2 entries.
utils/combine_data.sh data/test data/test_{mar87,oct87,feb89,oct89,feb91,sep92}
steps/compute_cmvn_stats.sh data/test exp/make_mfcc/test $featdir
steps/compute_cmvn_stats.sh data/test exp/make_feat/test $featdir
utils/subset_data_dir.sh data/train 1000 data/train.1k
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment