Instructions to use WizardLMTeam/WizardCoder-15B-V1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WizardLMTeam/WizardCoder-15B-V1.0 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("WizardLMTeam/WizardCoder-15B-V1.0", dtype="auto") - Notebooks
- Google Colab
- Kaggle
finetune on WizardCoder-15B-V1.0
#6
by iawen - opened
Hello, I'm going to fine-tune on WizardCoder-15B-V1.0 , do I need this code:
if "starcoder" in model_args.model_name_or_path:
tokenizer.add_special_tokens(
{
"eos_token": DEFAULT_EOS_TOKEN,
"bos_token": DEFAULT_BOS_TOKEN,
"unk_token": DEFAULT_UNK_TOKEN,
"pad_token": DEFAULT_PAD_TOKEN,
}
)
iawen changed discussion status to closed