We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why does the function init_tokenizer() contain hardcoded path to a directory?
tokenizer = BertTokenizer.from_pretrained('/home/notebook/data/group/LowLevelLLM/LLM/bert-base-uncased', local_files_only=True)
This is ultimately called when an instance of the RAM model is created, via the call model=RAMLora()
Should this be replaced with tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')?
The text was updated successfully, but these errors were encountered:
Yes, you can replace the hardcoded path with hardcoded path
Sorry, something went wrong.
No branches or pull requests
Why does the function init_tokenizer() contain hardcoded path to a directory?
tokenizer = BertTokenizer.from_pretrained('/home/notebook/data/group/LowLevelLLM/LLM/bert-base-uncased', local_files_only=True)
This is ultimately called when an instance of the RAM model is created, via the call model=RAMLora()
Should this be replaced with tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')?
The text was updated successfully, but these errors were encountered: