comparison trunk/experiments/scripts/cnbh-syllables/run_training_and_testing/test_features.sh @ 357:dcabd87581b5

- AWS
author tomwalters
date Wed, 11 Aug 2010 22:53:59 +0000
parents 4bf6d5bb232e
children f448f6bc9574
comparison
equal deleted inserted replaced
356:4bf6d5bb232e 357:dcabd87581b5
19 TRAINING_ITERATIONS_LIST=$6 19 TRAINING_ITERATIONS_LIST=$6
20 TESTING_ITERATIONS_LIST=$7 20 TESTING_ITERATIONS_LIST=$7
21 FEATURE_SIZE=$8 21 FEATURE_SIZE=$8
22 FEATURE_TYPE=$9 22 FEATURE_TYPE=$9
23 23
24
25 TRAIN_SPEAKERS=train_speakers 24 TRAIN_SPEAKERS=train_speakers
26 TEST_SPEAKERS=test_speakers 25 TEST_SPEAKERS=test_speakers
27 26
28 # These are not 27 HMMCONFIG=hmm_configuration
29 SYLLIST_COMPLETE=syllist
30 GRAM=gram
31 DICT=dict
32 WDNET=wdnet
33 TRAIN_MLF=train.mlf
34 TEST_MLF=test.mlf
35 HMMCONFIG=hmmconfig
36 28
37 29
38 if [ "$FEATURE_TYPE" == "MFCC_0_D_A"] 30 if [ "$FEATURE_TYPE" == "MFCC_0_D_A"]
39 then 31 then
40 cat <<"EOF" > $WORK/$HMMCONFIG 32 cat <<"EOF" > $WORK/$HMMCONFIG
50 SOURCEKIND= USER_E 42 SOURCEKIND= USER_E
51 TARGETKIND = USER_E_D_A 43 TARGETKIND = USER_E_D_A
52 EOF 44 EOF
53 fi 45 fi
54 46
55 for total_hmm_states in 3 4 5 6 7 8; do 47 for total_hmm_states in $HMM_STATES_LIST; do
56 for mixture_components in 1 2 3 4 5 6 7; do 48 for mixture_components in $MIXTURE_COMPONENTS_LIST; do
57 . run_test_instance.sh & 49 . run_test_instance.sh &
58 done 50 done
59 done 51 done
60 echo "Waiting..." 52 echo "Waiting..."
61 wait 53 wait