Home
last modified time | relevance | path

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

/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/sentencepiece/
Doptimized_encoder.cc152 struct LatticeElement { in EncodeNormalizedString() struct
156 LatticeElement(float score_, int code_, int prev_position_) in EncodeNormalizedString() function
158 LatticeElement() {} in EncodeNormalizedString() function
161 std::vector<LatticeElement> lattice(length + 1); in EncodeNormalizedString()
171 LatticeElement& current_element = lattice[pos]; in EncodeNormalizedString()
174 current_element = LatticeElement( in EncodeNormalizedString()
183 LatticeElement& target_element = lattice[i + m.match_length]; in EncodeNormalizedString()
186 target_element = LatticeElement(score, m.id, i); in EncodeNormalizedString()