Commit
·
d7a9f1c
1
Parent(s):
ecce215
Training in progress, step 100
Browse files- .gitignore +1 -0
- config.json +51 -0
- preprocessor_config.json +14 -0
- pytorch_model.bin +3 -0
- runs/Jun16_00-40-47_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686856536.ubuntu-Standard-PC-Q35-ICH9-2009.16882.0 +3 -0
- runs/Jun16_00-56-30_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686857196.ubuntu-Standard-PC-Q35-ICH9-2009.17536.0 +3 -0
- runs/Jun16_00-59-27_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686857373.ubuntu-Standard-PC-Q35-ICH9-2009.17536.1 +3 -0
- runs/Jun16_01-04-01_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686857648.ubuntu-Standard-PC-Q35-ICH9-2009.17714.0 +3 -0
- runs/Jun16_01-05-52_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686857757.ubuntu-Standard-PC-Q35-ICH9-2009.17714.1 +3 -0
- runs/Jun18_00-37-12_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1687028838.ubuntu-Standard-PC-Q35-ICH9-2009.45133.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "openai/whisper-small",
|
3 |
+
"activation_dropout": 0.0,
|
4 |
+
"activation_function": "gelu",
|
5 |
+
"apply_spec_augment": false,
|
6 |
+
"architectures": [
|
7 |
+
"WhisperForConditionalGeneration"
|
8 |
+
],
|
9 |
+
"attention_dropout": 0.0,
|
10 |
+
"begin_suppress_tokens": [
|
11 |
+
220,
|
12 |
+
50257
|
13 |
+
],
|
14 |
+
"bos_token_id": 50257,
|
15 |
+
"classifier_proj_size": 256,
|
16 |
+
"d_model": 768,
|
17 |
+
"decoder_attention_heads": 12,
|
18 |
+
"decoder_ffn_dim": 3072,
|
19 |
+
"decoder_layerdrop": 0.0,
|
20 |
+
"decoder_layers": 12,
|
21 |
+
"decoder_start_token_id": 50258,
|
22 |
+
"dropout": 0.0,
|
23 |
+
"encoder_attention_heads": 12,
|
24 |
+
"encoder_ffn_dim": 3072,
|
25 |
+
"encoder_layerdrop": 0.0,
|
26 |
+
"encoder_layers": 12,
|
27 |
+
"eos_token_id": 50257,
|
28 |
+
"forced_decoder_ids": null,
|
29 |
+
"init_std": 0.02,
|
30 |
+
"is_encoder_decoder": true,
|
31 |
+
"mask_feature_length": 10,
|
32 |
+
"mask_feature_min_masks": 0,
|
33 |
+
"mask_feature_prob": 0.0,
|
34 |
+
"mask_time_length": 10,
|
35 |
+
"mask_time_min_masks": 2,
|
36 |
+
"mask_time_prob": 0.05,
|
37 |
+
"max_length": 448,
|
38 |
+
"max_source_positions": 1500,
|
39 |
+
"max_target_positions": 448,
|
40 |
+
"model_type": "whisper",
|
41 |
+
"num_hidden_layers": 12,
|
42 |
+
"num_mel_bins": 80,
|
43 |
+
"pad_token_id": 50257,
|
44 |
+
"scale_embedding": false,
|
45 |
+
"suppress_tokens": [],
|
46 |
+
"torch_dtype": "float32",
|
47 |
+
"transformers_version": "4.31.0.dev0",
|
48 |
+
"use_cache": true,
|
49 |
+
"use_weighted_layer_sum": false,
|
50 |
+
"vocab_size": 51865
|
51 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"chunk_length": 30,
|
3 |
+
"feature_extractor_type": "WhisperFeatureExtractor",
|
4 |
+
"feature_size": 80,
|
5 |
+
"hop_length": 160,
|
6 |
+
"n_fft": 400,
|
7 |
+
"n_samples": 480000,
|
8 |
+
"nb_max_frames": 3000,
|
9 |
+
"padding_side": "right",
|
10 |
+
"padding_value": 0.0,
|
11 |
+
"processor_class": "WhisperProcessor",
|
12 |
+
"return_attention_mask": false,
|
13 |
+
"sampling_rate": 16000
|
14 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65fe5f6cbfc2b716f3b06cc6337a9be0493d16d2f5f105288b8d3b84e2e3b036
|
3 |
+
size 967102601
|
runs/Jun16_00-40-47_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686856536.ubuntu-Standard-PC-Q35-ICH9-2009.16882.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:55fca73415c2b145eed9c2c566d909be91c95cd27868e7ee74b011a176a257d8
|
3 |
+
size 4847
|
runs/Jun16_00-56-30_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686857196.ubuntu-Standard-PC-Q35-ICH9-2009.17536.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e68440b6105d2942fc77facccc1b7ad42258976aa584a0c8ce85e3b4816e3bb
|
3 |
+
size 4847
|
runs/Jun16_00-59-27_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686857373.ubuntu-Standard-PC-Q35-ICH9-2009.17536.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4592473a1b21413fc0ef152f1f3fb24ed64ef481c23b3ef040908e9d95f17a68
|
3 |
+
size 4847
|
runs/Jun16_01-04-01_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686857648.ubuntu-Standard-PC-Q35-ICH9-2009.17714.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a4f60dee822f8325dc68cebe35d71da453e6a4d31b096f94c53b162f696fc8af
|
3 |
+
size 4847
|
runs/Jun16_01-05-52_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1686857757.ubuntu-Standard-PC-Q35-ICH9-2009.17714.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:29bb84f5409f45ce24420153d41eca9cb9eb77d3dd101f8c7b8d092121d812e0
|
3 |
+
size 11112
|
runs/Jun18_00-37-12_ubuntu-Standard-PC-Q35-ICH9-2009/events.out.tfevents.1687028838.ubuntu-Standard-PC-Q35-ICH9-2009.45133.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5dad4c540384e914e2115d87c26480c161ce177df2ede3939c46cb5238af9f58
|
3 |
+
size 5771
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ca453710a3bb364d4a7f189f1f89953b68191bc725082529afcbc392ffe10e9b
|
3 |
+
size 4091
|