Skip to content

Commit

Permalink
Merge pull request #300 from nebuly-ai/fix_llama_tok
Browse files Browse the repository at this point in the history
Add tokenizer path to load_tokenizer for llama models
  • Loading branch information
diegofiori authored Mar 26, 2023
2 parents aad1c09 + 1f19e73 commit 9efe338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/accelerate/chatllama/chatllama/rlhf/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def load_tokenizer(config: ConfigActor):
load_tokenizer,
) # noqa

tokenizer = load_tokenizer()
tokenizer = load_tokenizer(config.tokenizer_path)
return tokenizer

def parameters(self):
Expand Down

0 comments on commit 9efe338

Please sign in to comment.