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