I am trying to download the tokenizer for CodeGen 2.5, but when I run the command in the tutorial >>> from transformers import AutoTokenizer, AutoModelForCausalLM >>> tokenizer = AutoTokenizer.from_pretrained("Salesforce/codegen25-7b-mono", trust_remote_code=True) Traceback (most recent ...
CodeGen2.5 importtorchfromtransformersimportAutoTokenizer,AutoModelForCausalLMtokenizer=AutoTokenizer.from_pretrained("Salesforce/codegen25-7b-mono",trust_remote_code=True)model=AutoModelForCausalLM.from_pretrained("Salesforce/codegen25-7b-mono")inputs=tokenizer("# this function prints hello world",return...