1 write to Left
Microsoft.ML.Tokenizers (1)
Model\SentencePieceTokenizer.cs (1)
2268Left = left;
17 references to Left
Microsoft.ML.Tokenizers (17)
Model\SentencePieceTokenizer.cs (17)
2206if (symbols[top.Left].pieceSpan.Length == 0 || symbols[top.Right].pieceSpan.Length == 0 || 2207symbols[top.Left].pieceSpan.Length + symbols[top.Right].pieceSpan.Length != top.Length) 2213symbols[top.Left].pieceSpan = (symbols[top.Left].pieceSpan.Index, symbols[top.Left].pieceSpan.Length + symbols[top.Right].pieceSpan.Length); 2214symbols[top.Left].id = top.Id; 2217symbols[top.Left].next = symbols[top.Right].next; 2221symbols[symbols[top.Right].next].prev = top.Left; 2226TryMerge(symbols[top.Left].prev, top.Left, text); 2227TryMerge(top.Left, symbols[top.Left].next, text); 2282return other.Left.CompareTo(Left); 2289hashCode = (hashCode * 37) + Left.GetHashCode(); 2293public bool Equals(SymbolPair other) => Left == other.Left && Score == other.Score;