Instructions to use SOULAMA/CodeLlama-7b-Python-hf-fine-tuning with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SOULAMA/CodeLlama-7b-Python-hf-fine-tuning with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("SOULAMA/CodeLlama-7b-Python-hf-fine-tuning", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "add_prefix_space": true, | |
| "backend": "tokenizers", | |
| "bos_token": "<s>", | |
| "clean_up_tokenization_spaces": false, | |
| "eos_token": "</s>", | |
| "eot_token": "β<EOT>", | |
| "extra_special_tokens": [ | |
| "β<PRE>", | |
| "β<MID>", | |
| "β<SUF>", | |
| "β<EOT>", | |
| "<FILL_ME>" | |
| ], | |
| "fill_token": "<FILL_ME>", | |
| "is_local": false, | |
| "legacy": null, | |
| "local_files_only": false, | |
| "middle_token": "β<MID>", | |
| "model_max_length": 1000000000000000019884624838656, | |
| "pad_token": "</s>", | |
| "prefix_token": "β<PRE>", | |
| "sp_model_kwargs": {}, | |
| "suffix_token": "β<SUF>", | |
| "tokenizer_class": "CodeLlamaTokenizer", | |
| "unk_token": "<unk>", | |
| "use_default_system_prompt": false | |
| } | |