1 instantiation of SymbolPair
Microsoft.ML.Tokenizers (1)
Model\SentencePieceBpeModel.cs (1)
1205
SymbolPair pair =
new
(left, right, leftId.Score, pieceLength, leftId.Id);
7 references to SymbolPair
Microsoft.ML.Tokenizers (7)
Model\SentencePieceBpeModel.cs (7)
1152
PriorityQueue<
SymbolPair
> agenda = new(symbolIndex);
1162
SymbolPair
top = agenda.Dequeue();
1205
SymbolPair
pair = new(left, right, leftId.Score, pieceLength, leftId.Id);
1220
private struct SymbolPair : IEquatable<
SymbolPair
>, IComparable<
SymbolPair
>
1237
public int CompareTo(
SymbolPair
other)
1255
public bool Equals(
SymbolPair
other) => Left == other.Left && Score == other.Score;