You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by lx...@apache.org on 2017/07/07 15:58:45 UTC

[32/50] [abbrv] incubator-mxnet-test git commit: added docs for output of ctc loss layer (#6906)

added docs for output of ctc loss layer (#6906)



Project: http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/commit/c8289d1a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/tree/c8289d1a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/diff/c8289d1a

Branch: refs/heads/master
Commit: c8289d1a53579bd186b5a8180c13650abec1628f
Parents: b760eb1
Author: Sebastian Bodenstein <se...@gmail.com>
Authored: Sat Jul 1 20:57:48 2017 +0200
Committer: Eric Junyuan Xie <pi...@users.noreply.github.com>
Committed: Sat Jul 1 11:57:48 2017 -0700

----------------------------------------------------------------------
 src/operator/contrib/ctc_loss.cc | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mxnet-test/blob/c8289d1a/src/operator/contrib/ctc_loss.cc
----------------------------------------------------------------------
diff --git a/src/operator/contrib/ctc_loss.cc b/src/operator/contrib/ctc_loss.cc
index 13d2800..918af0e 100644
--- a/src/operator/contrib/ctc_loss.cc
+++ b/src/operator/contrib/ctc_loss.cc
@@ -72,6 +72,8 @@ applies a softmax to each vector, which then becomes a vector of probabilities
 over the alphabet. Note that the 0th element of this vector is reserved for the 
 special blank character.
 
+``out`` is a list of CTC loss values, one per example in the batch.
+
 See *Connectionist Temporal Classification: Labelling Unsegmented 
 Sequence Data with Recurrent Neural Networks*, A. Graves *et al*. for more 
 information.