Instructions to use Ferrag/Trust-DeepCoder-6.7b-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Ferrag/Trust-DeepCoder-6.7b-Instruct with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("deepseek-ai/deepseek-coder-6.7b-base") model = PeftModel.from_pretrained(base_model, "Ferrag/Trust-DeepCoder-6.7b-Instruct") - Notebooks
- Google Colab
- Kaggle
File size: 369 Bytes
bbf58ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | {
"bos_token": {
"content": "<|begin▁of▁sentence|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"eos_token": {
"content": "<|end▁of▁sentence|>",
"lstrip": false,
"normalized": true,
"rstrip": false,
"single_word": false
},
"pad_token": "<|end▁of▁sentence|>"
}
|