jimregan commited on
Commit
ffd92c2
1 Parent(s): 10a768b

prematurely adding just to make sure the conversion works

Browse files
preprocessor_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "feature_extractor_type": "Wav2Vec2FeatureExtractor",
4
+ "feature_size": 1,
5
+ "padding_side": "right",
6
+ "padding_value": 0,
7
+ "processor_class": "Wav2Vec2Processor",
8
+ "return_attention_mask": true,
9
+ "sampling_rate": 16000
10
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26985929a20acafbb195465b20c51d7231cb4c6b16e9de1e2100043af5275f54
3
+ size 1262043565
runs/train/events.out.tfevents.1678101870.sbtaldeep24 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ebbe36a42b039f5e86e6fd48f37d8aa7b054ac53d816e94780a0831f7eece9c9
3
- size 57954
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a258602029c6da009b0411cb657653d387fb63399c0ac7cc71fe1f7477b359b9
3
+ size 70273
runs/train_inner/events.out.tfevents.1678102040.sbtaldeep24 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:417537f6b2f2b44c67bfee0aa02a60f74926026cb2fb21da2e19b454b336e5fd
3
- size 26406
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45b62d66d22cbbf9198f66f520978aefd47e51f706d30af8b9764dc10f4aee40
3
+ size 31537
runs/valid/events.out.tfevents.1678101858.sbtaldeep24 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fbc597632357a5ff6349825ce4b0d56cf05766a62f2dcd36fc6b78f1ce3f3893
3
- size 45614
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a2fd61116d23440406fb1b615562cc28c66e17e38898674e76ddc3879a6d766
3
+ size 54886
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "eos_token": "</s>",
4
+ "pad_token": "<pad>",
5
+ "unk_token": "<unk>"
6
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "do_lower_case": false,
4
+ "eos_token": "</s>",
5
+ "model_max_length": 1000000000000000019884624838656,
6
+ "pad_token": "<pad>",
7
+ "processor_class": "Wav2Vec2Processor",
8
+ "replace_word_delimiter_char": " ",
9
+ "tokenizer_class": "Wav2Vec2CTCTokenizer",
10
+ "unk_token": "<unk>",
11
+ "word_delimiter_token": "|"
12
+ }
vocab.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "-": 4,
3
+ ":": 5,
4
+ "</s>": 2,
5
+ "<pad>": 0,
6
+ "<s>": 1,
7
+ "<unk>": 3,
8
+ "a": 6,
9
+ "b": 7,
10
+ "c": 8,
11
+ "d": 9,
12
+ "e": 10,
13
+ "f": 11,
14
+ "g": 12,
15
+ "h": 13,
16
+ "i": 14,
17
+ "j": 15,
18
+ "k": 16,
19
+ "l": 17,
20
+ "m": 18,
21
+ "n": 19,
22
+ "o": 20,
23
+ "p": 21,
24
+ "r": 22,
25
+ "s": 23,
26
+ "t": 24,
27
+ "u": 25,
28
+ "v": 26,
29
+ "w": 27,
30
+ "x": 28,
31
+ "y": 29,
32
+ "z": 30,
33
+ "|": 31,
34
+ "ä": 32,
35
+ "å": 33,
36
+ "é": 34,
37
+ "ö": 35
38
+ }