2 overrides of TryMapIdToToken
Microsoft.ML.Tokenizers (2)
Model\SentencePieceBpeModel.cs (1)
111
public override bool
TryMapIdToToken
(int id, out string? token) => _vocabReverse.TryGetValue(id, out token);
Model\SentencePieceUnigramModel.cs (1)
182
public override bool
TryMapIdToToken
(int id, out string? token)
6 references to TryMapIdToToken
Microsoft.ML.Tokenizers (6)
Model\SentencePieceBaseModel.cs (6)
251
else if (!TryDecodeAsSpecialToken(this, current, considerSpecialTokens, ref sb) &&
TryMapIdToToken
(current, out string? token))
256
else if (!TryDecodeAsSpecialToken(this, current, considerSpecialTokens, ref sb) &&
TryMapIdToToken
(current, out string? token))
304
if (!TryDecodeAsSpecialToken(this, current, considerSpecialTokens, ref sb) &&
TryMapIdToToken
(current, out string? token))
491
if (!isSpecialToken &&
TryMapIdToToken
(current, out string? token))
512
if (!isSpecialToken &&
TryMapIdToToken
(current, out string? token))
589
if (!isSpecialToken &&
TryMapIdToToken
(current, out string? token))