Data Fields
ngraph::pass::SimplifyCTCGreedyDecoderSeqLen Class Reference

SimplifyCTCGreedyDecoder converts v6:CTCGreedyDecoderSeqLen into v0::CTCGreedyDecoder. More...

#include <simplify_ctc_greedy_decoder_seq_len.hpp>

Inheritance diagram for ngraph::pass::SimplifyCTCGreedyDecoderSeqLen:

Data Fields

 NGRAPH_RTTI_DECLARATION
 

Detailed Description

SimplifyCTCGreedyDecoder converts v6:CTCGreedyDecoderSeqLen into v0::CTCGreedyDecoder.

       data[N, T, C]    seq_len[N]
              \          /
       CTCGreedyDecoderSeqLen

will be converted to

      data[T, N, C]   seq_mask[T, N]
               \         /
             CTCGreedyDecoder
               /         \
  class_index[N, T]    seq_len[N]

The transformation works only for case when the blank_index input == C-1, where C is the number of classes.


The documentation for this class was generated from the following file: