avkumararun commited on
Commit
9d0cc1b
·
verified ·
1 Parent(s): 5a18c73

Upload processor

Browse files
Files changed (4) hide show
  1. added_tokens.json +4 -0
  2. processor_config.json +12 -0
  3. tokenizer_config.json +57 -0
  4. vocab.json +30 -0
added_tokens.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "</s>": 29,
3
+ "<s>": 28
4
+ }
processor_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "feature_extractor": {
3
+ "do_normalize": true,
4
+ "feature_extractor_type": "Wav2Vec2FeatureExtractor",
5
+ "feature_size": 1,
6
+ "padding_side": "right",
7
+ "padding_value": 0.0,
8
+ "return_attention_mask": true,
9
+ "sampling_rate": 16000
10
+ },
11
+ "processor_class": "Wav2Vec2Processor"
12
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "|",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "26": {
12
+ "content": "[UNK]",
13
+ "lstrip": true,
14
+ "normalized": false,
15
+ "rstrip": true,
16
+ "single_word": false,
17
+ "special": false
18
+ },
19
+ "27": {
20
+ "content": "[PAD]",
21
+ "lstrip": true,
22
+ "normalized": false,
23
+ "rstrip": true,
24
+ "single_word": false,
25
+ "special": false
26
+ },
27
+ "28": {
28
+ "content": "<s>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "29": {
36
+ "content": "</s>",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "additional_special_tokens": null,
45
+ "backend": "custom",
46
+ "bos_token": "<s>",
47
+ "do_lower_case": false,
48
+ "eos_token": "</s>",
49
+ "model_max_length": 1000000000000000019884624838656,
50
+ "pad_token": "[PAD]",
51
+ "processor_class": "Wav2Vec2Processor",
52
+ "replace_word_delimiter_char": " ",
53
+ "target_lang": null,
54
+ "tokenizer_class": "Wav2Vec2CTCTokenizer",
55
+ "unk_token": "[UNK]",
56
+ "word_delimiter_token": "|"
57
+ }
vocab.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "0": 1,
3
+ "1": 2,
4
+ "A": 3,
5
+ "B": 4,
6
+ "C": 5,
7
+ "D": 6,
8
+ "E": 7,
9
+ "F": 8,
10
+ "G": 9,
11
+ "H": 10,
12
+ "I": 11,
13
+ "L": 12,
14
+ "M": 13,
15
+ "N": 14,
16
+ "O": 15,
17
+ "P": 16,
18
+ "R": 17,
19
+ "S": 18,
20
+ "T": 19,
21
+ "U": 20,
22
+ "V": 21,
23
+ "W": 22,
24
+ "X": 23,
25
+ "Y": 24,
26
+ "Z": 25,
27
+ "[PAD]": 27,
28
+ "[UNK]": 26,
29
+ "|": 0
30
+ }