szili2011 commited on
Commit
f8bc109
1 Parent(s): 1973f53

Create tokenizer_config.json

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +37 -0
tokenizer_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "tokenizer_class": "Video2ReactionTextTokenizer",
3
+ "tokenizer_config": {
4
+ "special_tokens": {
5
+ "<s>": 0,
6
+ "</s>": 1,
7
+ "<unk>": 2,
8
+ "<pad>": 3,
9
+ "<mask>": 4
10
+ },
11
+ "tokenizer_parameters": {
12
+ "tokenizer_model": "BPE",
13
+ "add_prefix_space": false,
14
+ "trim_offsets": true,
15
+ "model_max_length": 512,
16
+ "tokenization_method": "ByteLevel",
17
+ "tokenizer_version": "1.0.0"
18
+ },
19
+ "training_parameters": {
20
+ "vocab_size": 30000,
21
+ "min_frequency": 2,
22
+ "special_tokens_count": 5,
23
+ "max_length_single_sentence": 512,
24
+ "max_length_pair": 512,
25
+ "pad_token_id": 3,
26
+ "unk_token_id": 2,
27
+ "bos_token_id": 0,
28
+ "eos_token_id": 1
29
+ },
30
+ "model_information": {
31
+ "author": "Szilárd",
32
+ "description": "Custom tokenizer for Video2ReactionText model",
33
+ "license": "MIT",
34
+ "version": "1.0.0"
35
+ }
36
+ }
37
+ }