I am not able to import LLaMATokenizer
Any solution for this problem?
I am using the code of this repo. https://github.com/zphang/transformers/tree/llama_push and trying to load the models and tokenizer using
tokenizer = transformers.LLaMATokenizer.from_pretrained("./weights/tokenizer/")
model = transformers.LLaMAForCausalLM.from_pretrained("./weights/llama-7b/")
which results in the following error:
ImportError: cannot import name 'LLaMATokenizer' from 'transformers'