Home
last modified time | relevance | path

Searched refs:top_paths_ (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dctc_decoder_ops.cc52 CTCDecodeHelper() : top_paths_(1) {} in CTCDecodeHelper()
54 inline int GetTopPaths() const { return top_paths_; } in GetTopPaths()
55 void SetTopPaths(int tp) { top_paths_ = tp; } in SetTopPaths()
99 "log_probability", TensorShape({batch_size, top_paths_}), log_prob); in ValidateInputsGenerateOutputs()
119 std::vector<int64> num_entries(top_paths_, 0); in StoreAllDecodedSequences()
123 CHECK_EQ(batch_s.size(), top_paths_); in StoreAllDecodedSequences()
124 for (int p = 0; p < top_paths_; ++p) { in StoreAllDecodedSequences()
129 for (int p = 0; p < top_paths_; ++p) { in StoreAllDecodedSequences()
169 int top_paths_; member in tensorflow::CTCDecodeHelper