more linter feeding

This commit is contained in:
Patrick Devine 2025-02-18 13:32:58 -08:00
parent 4cda3e3622
commit b7349a4efd

View File

@ -26,7 +26,7 @@ func NewSentencePieceModel(pre string, vocab *Vocabulary) SentencePieceModel {
counter := map[int]int{}
var maxTokenLen int
for cnt, _ := range vocab.Types {
for cnt := range vocab.Types {
switch vocab.Types[cnt] {
case TOKEN_TYPE_NORMAL, TOKEN_TYPE_USER_DEFINED, TOKEN_TYPE_UNUSED:
maxTokenLen = max(maxTokenLen, len(vocab.Values[cnt]))