pietrolesci commited on
Commit
980c229
·
verified ·
1 Parent(s): 8b402c9

Upload tokenizer

Browse files
Files changed (4) hide show
  1. README.md +3 -0
  2. special_tokens_map.json +9 -0
  3. tokenizer.json +0 -0
  4. tokenizer_config.json +17 -0
README.md CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  ## Experiment Configuration
2
  ```yaml
3
  callbacks:
 
1
+ ---
2
+ {}
3
+ ---
4
  ## Experiment Configuration
5
  ```yaml
6
  callbacks:
special_tokens_map.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "eos_token": {
3
+ "content": "<|endoftext|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ }
9
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<|endoftext|>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ }
11
+ },
12
+ "clean_up_tokenization_spaces": true,
13
+ "eos_token": "<|endoftext|>",
14
+ "extra_special_tokens": {},
15
+ "model_max_length": 1000000000000000019884624838656,
16
+ "tokenizer_class": "PreTrainedTokenizerFast"
17
+ }