File size: 565 Bytes
30e2506
 
 
 
6f92f5a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
library_name: transformers
tags: []
---
Just Llama 3b 3.2 tokenizer modified to use two new special tokens replacing the reserved special tokens slots:

```json
[
    {
      "id": 128002,
      "content": "<|reference_text|>",
      "single_word": false,
      "lstrip": false,
      "rstrip": false,
      "normalized": false,
      "special": true
    },
    {
      "id": 128003,
      "content": "<|end_reference_text|>",
      "single_word": false,
      "lstrip": false,
      "rstrip": false,
      "normalized": false,
      "special": true
    }
]
```