Abhinay123
commited on
Commit
•
24b5dec
1
Parent(s):
093529a
Training in progress, step 1000
Browse files- config.json +61 -0
- model.safetensors +3 -0
- preprocessor_config.json +14 -0
- runs/Oct17_17-13-27_gpusrv-xeon-75/events.out.tfevents.1729165411.gpusrv-xeon-75.159476.0 +3 -0
- runs/Oct17_17-14-42_gpusrv-xeon-75/events.out.tfevents.1729165485.gpusrv-xeon-75.159882.0 +3 -0
- runs/Oct17_17-36-10_gpusrv-xeon-75/events.out.tfevents.1729166773.gpusrv-xeon-75.162286.0 +3 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": null,
|
11 |
+
"bos_token_id": 50257,
|
12 |
+
"classifier_proj_size": 256,
|
13 |
+
"d_model": 768,
|
14 |
+
"decoder_attention_heads": 12,
|
15 |
+
"decoder_ffn_dim": 3072,
|
16 |
+
"decoder_layerdrop": 0.0,
|
17 |
+
"decoder_layers": 12,
|
18 |
+
"decoder_start_token_id": 50258,
|
19 |
+
"dropout": 0.0,
|
20 |
+
"encoder_attention_heads": 12,
|
21 |
+
"encoder_ffn_dim": 3072,
|
22 |
+
"encoder_layerdrop": 0.0,
|
23 |
+
"encoder_layers": 12,
|
24 |
+
"eos_token_id": 50257,
|
25 |
+
"forced_decoder_ids": [
|
26 |
+
[
|
27 |
+
1,
|
28 |
+
50259
|
29 |
+
],
|
30 |
+
[
|
31 |
+
2,
|
32 |
+
50359
|
33 |
+
],
|
34 |
+
[
|
35 |
+
3,
|
36 |
+
50363
|
37 |
+
]
|
38 |
+
],
|
39 |
+
"init_std": 0.02,
|
40 |
+
"is_encoder_decoder": true,
|
41 |
+
"mask_feature_length": 10,
|
42 |
+
"mask_feature_min_masks": 0,
|
43 |
+
"mask_feature_prob": 0.0,
|
44 |
+
"mask_time_length": 10,
|
45 |
+
"mask_time_min_masks": 2,
|
46 |
+
"mask_time_prob": 0.05,
|
47 |
+
"max_length": null,
|
48 |
+
"max_source_positions": 1500,
|
49 |
+
"max_target_positions": 448,
|
50 |
+
"median_filter_width": 7,
|
51 |
+
"model_type": "whisper",
|
52 |
+
"num_hidden_layers": 12,
|
53 |
+
"num_mel_bins": 80,
|
54 |
+
"pad_token_id": 50257,
|
55 |
+
"scale_embedding": false,
|
56 |
+
"torch_dtype": "float32",
|
57 |
+
"transformers_version": "4.45.2",
|
58 |
+
"use_cache": true,
|
59 |
+
"use_weighted_layer_sum": false,
|
60 |
+
"vocab_size": 51865
|
61 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1bd191412c8699a55dbc26eaae1e2cb72985c0770e6fe5fbd076bfb9fd12d65d
|
3 |
+
size 966995080
|
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 |
+
}
|
runs/Oct17_17-13-27_gpusrv-xeon-75/events.out.tfevents.1729165411.gpusrv-xeon-75.159476.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ede8b62d90b8825b0f318721ea37b6baf8d3cd83527dcab4f284f1d6d3ae4ad0
|
3 |
+
size 6710
|
runs/Oct17_17-14-42_gpusrv-xeon-75/events.out.tfevents.1729165485.gpusrv-xeon-75.159882.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9484fddec42b4f75d3fd580a4985d752ceafffb183aaf96f16b99554aef44e2
|
3 |
+
size 6710
|
runs/Oct17_17-36-10_gpusrv-xeon-75/events.out.tfevents.1729166773.gpusrv-xeon-75.162286.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:49fc896cd1a4c30b69923f6c07274f44ab1a7c627c67e8784a7cbc805eb106e0
|
3 |
+
size 15448
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1bdab43fdcc88f1cd94a6484bd9774af5e0a5602d64af9a6b9934b9134067283
|
3 |
+
size 5368
|