HomeSort by relevance Sort by last modified time
    Searched refs:BeamEntry (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/util/ctc/
ctc_beam_entry.h 37 // BeamEntry is exposed through template arguments BeamScorer and BeamComparer
59 struct BeamEntry {
61 friend BeamEntry<CTCBeamState>* BeamRoot<CTCBeamState>::AddEntry(
62 BeamEntry<CTCBeamState>* p, int l);
66 BeamEntry& GetChild(int ind) {
69 // If this is a new child, populate the BeamEntry<CTCBeamState>*.
78 const BeamEntry* c = this;
90 BeamEntry<CTCBeamState>* parent;
92 // All instances of child BeamEntry are owned by *beam_root.
93 gtl::FlatMap<int, BeamEntry<CTCBeamState>*> children
    [all...]
ctc_beam_search.h 75 typedef ctc_beam_search::BeamEntry<CTCBeamState> BeamEntry;
149 gtl::TopN<BeamEntry*, CTCBeamComparer> leaves_;
187 std::unique_ptr<std::vector<BeamEntry*>> branches(leaves_.Extract());
190 BeamEntry* entry = (*branches)[i];
269 std::unique_ptr<std::vector<BeamEntry*>> branches(leaves_.Extract());
272 for (BeamEntry* b : *branches) {
277 for (BeamEntry* b : *branches) {
311 for (BeamEntry* b : *branches) {
334 BeamEntry& c = b->GetChild(label)
    [all...]

Completed in 228 milliseconds