Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +103 -0
- preprocessor_config.json +9 -0
- pytorch_model.bin +3 -0
- runs/Oct27_22-19-02_anton-gpu-v100/1635373196.6101995/events.out.tfevents.1635373196.anton-gpu-v100.285637.1 +3 -0
- runs/Oct27_22-19-02_anton-gpu-v100/events.out.tfevents.1635373196.anton-gpu-v100.285637.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/hubert-base-ls960",
|
3 |
+
"activation_dropout": 0.1,
|
4 |
+
"apply_spec_augment": true,
|
5 |
+
"architectures": [
|
6 |
+
"HubertForSequenceClassification"
|
7 |
+
],
|
8 |
+
"attention_dropout": 0.1,
|
9 |
+
"bos_token_id": 1,
|
10 |
+
"classifier_proj_size": 256,
|
11 |
+
"conv_bias": false,
|
12 |
+
"conv_dim": [
|
13 |
+
512,
|
14 |
+
512,
|
15 |
+
512,
|
16 |
+
512,
|
17 |
+
512,
|
18 |
+
512,
|
19 |
+
512
|
20 |
+
],
|
21 |
+
"conv_kernel": [
|
22 |
+
10,
|
23 |
+
3,
|
24 |
+
3,
|
25 |
+
3,
|
26 |
+
3,
|
27 |
+
2,
|
28 |
+
2
|
29 |
+
],
|
30 |
+
"conv_stride": [
|
31 |
+
5,
|
32 |
+
2,
|
33 |
+
2,
|
34 |
+
2,
|
35 |
+
2,
|
36 |
+
2,
|
37 |
+
2
|
38 |
+
],
|
39 |
+
"ctc_loss_reduction": "sum",
|
40 |
+
"ctc_zero_infinity": false,
|
41 |
+
"do_stable_layer_norm": false,
|
42 |
+
"eos_token_id": 2,
|
43 |
+
"feat_extract_activation": "gelu",
|
44 |
+
"feat_extract_dropout": 0.0,
|
45 |
+
"feat_extract_norm": "group",
|
46 |
+
"feat_proj_dropout": 0.1,
|
47 |
+
"feat_proj_layer_norm": true,
|
48 |
+
"final_dropout": 0.1,
|
49 |
+
"finetuning_task": "audio-classification",
|
50 |
+
"gradient_checkpointing": false,
|
51 |
+
"hidden_act": "gelu",
|
52 |
+
"hidden_dropout": 0.1,
|
53 |
+
"hidden_dropout_prob": 0.1,
|
54 |
+
"hidden_size": 768,
|
55 |
+
"id2label": {
|
56 |
+
"0": "yes",
|
57 |
+
"1": "no",
|
58 |
+
"10": "_silence_",
|
59 |
+
"11": "_unknown_",
|
60 |
+
"2": "up",
|
61 |
+
"3": "down",
|
62 |
+
"4": "left",
|
63 |
+
"5": "right",
|
64 |
+
"6": "on",
|
65 |
+
"7": "off",
|
66 |
+
"8": "stop",
|
67 |
+
"9": "go"
|
68 |
+
},
|
69 |
+
"initializer_range": 0.02,
|
70 |
+
"intermediate_size": 3072,
|
71 |
+
"label2id": {
|
72 |
+
"_silence_": "10",
|
73 |
+
"_unknown_": "11",
|
74 |
+
"down": "3",
|
75 |
+
"go": "9",
|
76 |
+
"left": "4",
|
77 |
+
"no": "1",
|
78 |
+
"off": "7",
|
79 |
+
"on": "6",
|
80 |
+
"right": "5",
|
81 |
+
"stop": "8",
|
82 |
+
"up": "2",
|
83 |
+
"yes": "0"
|
84 |
+
},
|
85 |
+
"layer_norm_eps": 1e-05,
|
86 |
+
"layerdrop": 0.1,
|
87 |
+
"mask_feature_length": 10,
|
88 |
+
"mask_feature_prob": 0.0,
|
89 |
+
"mask_time_length": 10,
|
90 |
+
"mask_time_prob": 0.05,
|
91 |
+
"model_type": "hubert",
|
92 |
+
"num_attention_heads": 12,
|
93 |
+
"num_conv_pos_embedding_groups": 16,
|
94 |
+
"num_conv_pos_embeddings": 128,
|
95 |
+
"num_feat_extract_layers": 7,
|
96 |
+
"num_hidden_layers": 12,
|
97 |
+
"pad_token_id": 0,
|
98 |
+
"tokenizer_class": "Wav2Vec2CTCTokenizer",
|
99 |
+
"torch_dtype": "float32",
|
100 |
+
"transformers_version": "4.12.0.dev0",
|
101 |
+
"use_weighted_layer_sum": false,
|
102 |
+
"vocab_size": 32
|
103 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"feature_extractor_type": "Wav2Vec2FeatureExtractor",
|
4 |
+
"feature_size": 1,
|
5 |
+
"padding_side": "right",
|
6 |
+
"padding_value": 0,
|
7 |
+
"return_attention_mask": false,
|
8 |
+
"sampling_rate": 16000
|
9 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:511d69f6314d8c3a2b6ad1d05acdeb4aa19f069e915934dcb6045aeb61a7dd82
|
3 |
+
size 378371155
|
runs/Oct27_22-19-02_anton-gpu-v100/1635373196.6101995/events.out.tfevents.1635373196.anton-gpu-v100.285637.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16e34a99f5bc0da281dd20bc86ebf66abd4723fd4ecbb9c1d86e1d1932a21cfa
|
3 |
+
size 4578
|
runs/Oct27_22-19-02_anton-gpu-v100/events.out.tfevents.1635373196.anton-gpu-v100.285637.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eadbc300496e9886d258bc8eda2c11379cdf00301fee774def584d238be97075
|
3 |
+
size 10962
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b66956808f1955a79b2d497a329dcc417dcecda23f87a727c787f37801f05235
|
3 |
+
size 2927
|