CoolFace
Modelpublic

equerze/code-llama-7b-text-to-sql

sourceHugging Facellama2updated 2y agoView on Hugging Face
0likes6downloads
tokenizer_config.json99 linesDownload Raw Back to root
1{2  "add_bos_token": true,3  "add_eos_token": false,4  "added_tokens_decoder": {5    "0": {6      "content": "<unk>",7      "lstrip": false,8      "normalized": false,9      "rstrip": false,10      "single_word": false,11      "special": true12    },13    "1": {14      "content": "<s>",15      "lstrip": false,16      "normalized": false,17      "rstrip": false,18      "single_word": false,19      "special": true20    },21    "2": {22      "content": "</s>",23      "lstrip": false,24      "normalized": false,25      "rstrip": false,26      "single_word": false,27      "special": true28    },29    "32007": {30      "content": "▁<PRE>",31      "lstrip": false,32      "normalized": false,33      "rstrip": false,34      "single_word": false,35      "special": true36    },37    "32008": {38      "content": "▁<SUF>",39      "lstrip": false,40      "normalized": false,41      "rstrip": false,42      "single_word": false,43      "special": true44    },45    "32009": {46      "content": "▁<MID>",47      "lstrip": false,48      "normalized": false,49      "rstrip": false,50      "single_word": false,51      "special": true52    },53    "32010": {54      "content": "▁<EOT>",55      "lstrip": false,56      "normalized": false,57      "rstrip": false,58      "single_word": false,59      "special": true60    },61    "32016": {62      "content": "<|im_start|>",63      "lstrip": false,64      "normalized": false,65      "rstrip": false,66      "single_word": false,67      "special": true68    },69    "32017": {70      "content": "<|im_end|>",71      "lstrip": false,72      "normalized": false,73      "rstrip": false,74      "single_word": false,75      "special": true76    }77  },78  "additional_special_tokens": [79    "<|im_start|>",80    "<|im_end|>"81  ],82  "bos_token": "<|im_start|>",83  "chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",84  "clean_up_tokenization_spaces": false,85  "eos_token": "<|im_end|>",86  "eot_token": "▁<EOT>",87  "fill_token": "<FILL_ME>",88  "legacy": null,89  "middle_token": "▁<MID>",90  "model_max_length": 1000000000000000019884624838656,91  "pad_token": "<|im_end|>",92  "prefix_token": "▁<PRE>",93  "sp_model_kwargs": {},94  "suffix_token": "▁<SUF>",95  "tokenizer_class": "CodeLlamaTokenizer",96  "unk_token": "<unk>",97  "use_default_system_prompt": false98}99