Upload folder using huggingface_hub
#20
by
reach-vb
HF staff
- opened
This fix, fixes the issue with BOS not being prepended w/ AutoTokenizer
How can you test it:
from transformers import AutoTokenizer
AutoTokenizer.from_pretrained("meta-llama/Llama-3.2-90B-Vision-Instruct").encode("hello")
[15339]
AutoTokenizer.from_pretrained("meta-llama/Llama-3.2-90B-Vision-Instruct", revision="pr/29").encode("hello")
[128000, 15339]
Sanyam
changed pull request status to
merged