How to use Salesforce/codet5p-16b with Transformers:
# Load model directly from transformers import AutoModelForSeq2SeqLM model = AutoModelForSeq2SeqLM.from_pretrained("Salesforce/codet5p-16b", trust_remote_code=True, dtype="auto")
How and where I specify the language of the generated code? I want to make the system to generate C language from text inputs.
· Sign up or log in to comment