summaryrefslogtreecommitdiff
path: root/examples/tnet_preprocessing_example.lua
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-06-21 22:58:50 +0800
committerDeterminant <ted.sybil@gmail.com>2015-06-21 22:58:50 +0800
commit331886e5995ba3ece4ae97f199b5d7ceea612080 (patch)
treeee1aeae37b7083494b03bf46089a9f800f5dacf1 /examples/tnet_preprocessing_example.lua
parentaee0d372e6b06a217f24bea5c88962b97e0ca0eb (diff)
add support: use -1 to denote the end of utterance in MLF
Diffstat (limited to 'examples/tnet_preprocessing_example.lua')
-rw-r--r--examples/tnet_preprocessing_example.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tnet_preprocessing_example.lua b/examples/tnet_preprocessing_example.lua
index 5f20910..9e1c0ce 100644
--- a/examples/tnet_preprocessing_example.lua
+++ b/examples/tnet_preprocessing_example.lua
@@ -69,7 +69,7 @@ main:propagate({rearranged}, output)
for i = 0, 157 - 10 do
row_diff = input.trans[i] - output[1][i + 5]
for j = 0, row_diff:ncol() - 1 do
- nerv.utils.printf("%.8f ", row_diff[j])
+ nerv.printf("%.8f ", row_diff[j])
end
- nerv.utils.printf("\n")
+ nerv.printf("\n")
end