Before making use of this dataset, you may need to add the tokens to the vocabulary. For HuggingFace transformers tokenizer, the following is an example code snippet to add tokens.
from unidecode import unidecode
import transformers
with open('virtual_tokens.txt', 'r') as f:
virtual_tokens = f.readlines()
virtual_tokens = [unidecode(vt.strip()) for vt in virtual_tokens]
model_name_or_path = "meta-llama/Meta-Llama-3-8B"
# Load tokenizer and add tokens into vocabulary
tokenizer = transformers.AutoTokenizer.from_pretrained(model_name_or_path)
tokenizer.add_tokens(new_tokens=virtual_tokens, special_tokens=False)
After adding tokens to vocabulary, you may expand model embeddings, the following code shows how to expand embeddings:
# Load model and expand embeddings
model = transformers.AutoModelForCausalLM.from_pretrained(
model_name_or_path,
torch_dtype=torch.bfloat16
)
model.resize_token_embeddings(len(tokenizer))
@misc{wang2024toolgenunifiedtoolretrieval,
title={ToolGen: Unified Tool Retrieval and Calling via Generation},
author={Renxi Wang and Xudong Han and Lei Ji and Shu Wang and Timothy Baldwin and Haonan Li},
year={2024},
eprint={2410.03439},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2410.03439},
}
24 commits
Before making use of this dataset, you may need to add the tokens to the vocabulary. For HuggingFace transformers tokenizer, the following is an example code snippet to add tokens.
from unidecode import unidecode
import transformers
with open('virtual_tokens.txt', 'r') as f:
virtual_tokens = f.readlines()
virtual_tokens = [unidecode(vt.strip()) for vt in virtual_tokens]
model_name_or_path = "meta-llama/Meta-Llama-3-8B"
# Load tokenizer and add tokens into vocabulary
tokenizer = transformers.AutoTokenizer.from_pretrained(model_name_or_path)
tokenizer.add_tokens(new_tokens=virtual_tokens, special_tokens=False)
After adding tokens to vocabulary, you may expand model embeddings, the following code shows how to expand embeddings:
# Load model and expand embeddings
model = transformers.AutoModelForCausalLM.from_pretrained(
model_name_or_path,
torch_dtype=torch.bfloat16
)
model.resize_token_embeddings(len(tokenizer))
@misc{wang2024toolgenunifiedtoolretrieval,
title={ToolGen: Unified Tool Retrieval and Calling via Generation},
author={Renxi Wang and Xudong Han and Lei Ji and Shu Wang and Timothy Baldwin and Haonan Li},
year={2024},
eprint={2410.03439},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2410.03439},
}
24 commits