Skip to content

Commit

Permalink
Addressing CR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eldakms committed Apr 15, 2016
1 parent ff35e66 commit 0a9dfaf
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ configure text eol=lf
generate_build_info text eol=lf
run-test text eol=lf
run-test-common text eol=lf
run-timit-test-common text eol=lf
make_binary_drop_linux text eol=lf

Makefile text
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

# cntkrun <CNTK config file name> <additional CNTK arg>
cntkrun TIMIT_AdaptLearnRate.cntk "$CntkArguments" || exit $?
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

# Train:
cntkrun TIMIT_TrainSimpleNetwork.cntk "$CntkArguments" || exit $?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

# Train:
cntkrun TIMIT_TrainSimpleNetwork.cntk "$CntkArguments" || exit $?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

cntkrun TIMIT_TrainAutoEncoder.cntk "$CntkArguments" || exit $?
3 changes: 2 additions & 1 deletion Tests/EndToEndTests/Examples/Speech/TIMIT/TrainLstm/run-test
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

# Running only 3 epochs (~1000s gpu release), because full run takes a lot of time.
cntkrun TIMIT_TrainLSTM.cntk "$CntkArguments TIMIT_TrainLSTM=[SGD=[maxEpochs=3]]" || exit $?
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

cntkrun TIMIT_TrainMultiInput.cntk "$CntkArguments" || exit $?
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

cntkrun TIMIT_TrainMultiTask.cntk "$CntkArguments" || exit $?
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

cntkrun TIMIT_TrainNDLNetwork.cntk "$CntkArguments" || exit $?
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

cntkrun TIMIT_TrainSimpleNetwork.cntk "$CntkArguments" || exit $?
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

cntkrun TIMIT_TrainWithPreTrain.cntk "$CntkArguments" || exit $?
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

# Train:
cntkrun TIMIT_TrainAutoEncoder.cntk "$CntkArguments" || exit $?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
. $TEST_ROOT_DIR/run-test-common

# specific TIMIT variables
. $TEST_DIR/../run-test-common
. $TEST_DIR/../run-timit-test-common

# Train:
cntkrun TIMIT_TrainSimpleNetwork.cntk "$CntkArguments" || exit $?
Expand All @@ -25,6 +25,7 @@ if [ $? != 0 ]; then
echo Error: Output files are different.
$ExitCode = 1
fi
echo MD5 check succeeded.

# Delete the test data
rm -rf $DataDir
Expand Down

0 comments on commit 0a9dfaf

Please sign in to comment.