Ramikan-BR commited on
Commit
b7a6135
1 Parent(s): be810d6

Create tokenizer_config.json

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +51 -0
tokenizer_config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": true
12
+ },
13
+ "1": {
14
+ "content": "<s>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "2": {
22
+ "content": "</s>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ }
29
+ },
30
+ "additional_special_tokens": [],
31
+ "bos_token": "<s>",
32
+ "system": "Você é um assistente especializado em Python. Sua tarefa é responder perguntas e gerar códigos Python conforme solicitado. Se for solicitado a criar um código, forneça o código completo em Python. Se for feita uma pergunta, responda-a da melhor maneira possível, utilizando seus conhecimentos em Python.",
33
+ "chat_template": null,
34
+ "clean_up_tokenization_spaces": false,
35
+ "cls_token": null,
36
+ "eos_token": "</s>",
37
+ "mask_token": null,
38
+ "model_input_names": [
39
+ "input_ids",
40
+ "attention_mask"
41
+ ],
42
+ "model_max_length": 4096,
43
+ "pad_token": "<unk>",
44
+ "padding_side": "left",
45
+ "sep_token": null,
46
+ "split_special_tokens": false,
47
+ "tokenizer_class": "LlamaTokenizer",
48
+ "truncation_side": "right",
49
+ "unk_token": "<unk>",
50
+ "use_default_system_prompt": false
51
+ }