#!/bin/bash
KALDI_ROOT=./kaldi
. $KALDI_ROOT/tools/config/common_path.sh
export LC_ALL=C
stage=0
timit_dir='../data'
phoneme_map='60-39'
feat_dir='data'
feat_type='fbank'
config_file='conf/ctc_config.yaml'
if [ ! -z $1 ]; then
stage=$1
fi
if [ $stage -le 0 ]; then
echo "Step 0: Data Preparation ..."
local/timit_data_prep.sh $timit_dir $phoneme_map || exit 1;
python3 steps/get_model_units.py $feat_dir/train/phn_text
fi
if [ $stage -le 1 ]; then
echo "Step 1: Feature Extraction..."
steps/make_feat.sh $feat_type $feat_dir || exit 1;
fi