diff --git a/ch05/07_gpt_to_llama/converting-gpt-to-llama2.ipynb b/ch05/07_gpt_to_llama/converting-gpt-to-llama2.ipynb index 1ff5a42b..db301f5c 100644 --- a/ch05/07_gpt_to_llama/converting-gpt-to-llama2.ipynb +++ b/ch05/07_gpt_to_llama/converting-gpt-to-llama2.ipynb @@ -1216,7 +1216,7 @@ "\n", "\n", "class LlamaTokenizer:\n", - " def __init__(self, filepath):\n", + " def __init__(self, tokenizer_file):\n", " sp = spm.SentencePieceProcessor()\n", " sp.load(tokenizer_file)\n", " self.tokenizer = sp\n",