PEFT
falcon
falcon-7b
code
code instruct
instruct code
code alpaca
python code
code copilot
copilot
python coding assistant
coding assistant
Instructions to use monsterapi/falcon-7b-python-code-instructions-18k-alpaca with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use monsterapi/falcon-7b-python-code-instructions-18k-alpaca with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("tiiuae/falcon-7b") model = PeftModel.from_pretrained(base_model, "monsterapi/falcon-7b-python-code-instructions-18k-alpaca") - Notebooks
- Google Colab
- Kaggle
File size: 309 Bytes
e9d5dd1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | {
"additional_special_tokens": [
">>TITLE<<",
">>ABSTRACT<<",
">>INTRODUCTION<<",
">>SUMMARY<<",
">>COMMENT<<",
">>ANSWER<<",
">>QUESTION<<",
">>DOMAIN<<",
">>PREFIX<<",
">>SUFFIX<<",
">>MIDDLE<<"
],
"eos_token": "<|endoftext|>",
"pad_token": ">>TITLE<<"
}
|