Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gemma/gm/text/_tokenizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def _add_custom_tokens(self, serialized_proto: bytes) -> bytes:
for i, token in self.custom_tokens.items():
if i < 0 or i > 98:
raise ValueError(
f'Custom token id {i} for {token!r} is not in [1, 98].'
f'Custom token id {i} for {token!r} is not in [0, 98].'
)

# Update the piece
Expand Down