2 overrides of TryMapIdToToken
Microsoft.ML.Tokenizers (2)
Model\SentencePieceBpeModel.cs (1)
65
public override bool
TryMapIdToToken
(int id, out string? token) => _vocabReverse.TryGetValue(id, out token);
Model\SentencePieceUnigramModel.cs (1)
132
public override bool
TryMapIdToToken
(int id, out string? token)
6 references to TryMapIdToToken
Microsoft.ML.Tokenizers (6)
Model\SentencePieceBaseModel.cs (6)
190
else if (!TryDecodeAsSpecialToken(this, current, considerSpecialTokens, ref sb) &&
TryMapIdToToken
(current, out string? token))
195
else if (!TryDecodeAsSpecialToken(this, current, considerSpecialTokens, ref sb) &&
TryMapIdToToken
(current, out string? token))
243
if (!TryDecodeAsSpecialToken(this, current, considerSpecialTokens, ref sb) &&
TryMapIdToToken
(current, out string? token))
430
if (!isSpecialToken &&
TryMapIdToToken
(current, out string? token))
451
if (!isSpecialToken &&
TryMapIdToToken
(current, out string? token))
528
if (!isSpecialToken &&
TryMapIdToToken
(current, out string? token))