tf.nn.ctc_beam_search_decoder

View source on GitHub

Performs beam search decoding on the logits given in input.

tf.nn.ctc_beam_search_decoder(
    inputs, sequence_length, beam_width=100, top_paths=1
)

Note The ctc_greedy_decoder is a special case of the ctc_beam_search_decoder with top_paths=1 and beam_width=1 (but that decoder is faster for this special case).

Args:

Returns:

A tuple (decoded, log_probabilities) where