Splend1dchan commited on
Commit
54f055a
1 Parent(s): 3b37d63

Training in progress, step 20

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/wav2vec2-large-lv60",
3
+ "activation_dropout": 0.0,
4
+ "adapter_kernel_size": 3,
5
+ "adapter_stride": 2,
6
+ "add_adapter": false,
7
+ "apply_spec_augment": true,
8
+ "architectures": [
9
+ "Wav2VecModelForAudioTextClassification"
10
+ ],
11
+ "attention_dropout": 0.0,
12
+ "bos_token_id": 1,
13
+ "classifier_proj_size": 256,
14
+ "codevector_dim": 768,
15
+ "contrastive_logits_temperature": 0.1,
16
+ "conv_bias": true,
17
+ "conv_dim": [
18
+ 512,
19
+ 512,
20
+ 512,
21
+ 512,
22
+ 512,
23
+ 512,
24
+ 512
25
+ ],
26
+ "conv_kernel": [
27
+ 10,
28
+ 3,
29
+ 3,
30
+ 3,
31
+ 3,
32
+ 2,
33
+ 2
34
+ ],
35
+ "conv_stride": [
36
+ 5,
37
+ 2,
38
+ 2,
39
+ 2,
40
+ 2,
41
+ 2,
42
+ 2
43
+ ],
44
+ "ctc_loss_reduction": "mean",
45
+ "ctc_zero_infinity": false,
46
+ "diversity_loss_weight": 0.1,
47
+ "do_stable_layer_norm": true,
48
+ "eos_token_id": 2,
49
+ "feat_extract_activation": "gelu",
50
+ "feat_extract_dropout": 0.0,
51
+ "feat_extract_norm": "layer",
52
+ "feat_proj_dropout": 0.0,
53
+ "feat_quantizer_dropout": 0.0,
54
+ "final_dropout": 0.0,
55
+ "gradient_checkpointing": false,
56
+ "hidden_act": "gelu",
57
+ "hidden_dropout": 0.0,
58
+ "hidden_dropout_prob": 0.1,
59
+ "hidden_size": 1024,
60
+ "id2label": {
61
+ "0": "abroad",
62
+ "1": "address",
63
+ "2": "app_error",
64
+ "3": "atm_limit",
65
+ "4": "balance",
66
+ "5": "business_loan",
67
+ "6": "card_issues",
68
+ "7": "cash_deposit",
69
+ "8": "direct_debit",
70
+ "9": "freeze",
71
+ "10": "high_value_payment",
72
+ "11": "joint_account",
73
+ "12": "latest_transactions",
74
+ "13": "pay_bill"
75
+ },
76
+ "initializer_range": 0.02,
77
+ "intermediate_size": 4096,
78
+ "label2id": {
79
+ "abroad": 0,
80
+ "address": 1,
81
+ "app_error": 2,
82
+ "atm_limit": 3,
83
+ "balance": 4,
84
+ "business_loan": 5,
85
+ "card_issues": 6,
86
+ "cash_deposit": 7,
87
+ "direct_debit": 8,
88
+ "freeze": 9,
89
+ "high_value_payment": 10,
90
+ "joint_account": 11,
91
+ "latest_transactions": 12,
92
+ "pay_bill": 13
93
+ },
94
+ "layer_norm_eps": 1e-05,
95
+ "layerdrop": 0.0,
96
+ "mask_feature_length": 64,
97
+ "mask_feature_min_masks": 0,
98
+ "mask_feature_prob": 0.1,
99
+ "mask_time_length": 10,
100
+ "mask_time_min_masks": 2,
101
+ "mask_time_prob": 0.3,
102
+ "model_type": "wav2vec2",
103
+ "num_adapter_layers": 3,
104
+ "num_attention_heads": 16,
105
+ "num_codevector_groups": 2,
106
+ "num_codevectors_per_group": 320,
107
+ "num_conv_pos_embedding_groups": 16,
108
+ "num_conv_pos_embeddings": 128,
109
+ "num_feat_extract_layers": 7,
110
+ "num_hidden_layers": 24,
111
+ "num_negatives": 100,
112
+ "output_hidden_size": 1024,
113
+ "pad_token_id": 0,
114
+ "proj_codevector_dim": 768,
115
+ "tdnn_dilation": [
116
+ 1,
117
+ 2,
118
+ 3,
119
+ 1,
120
+ 1
121
+ ],
122
+ "tdnn_dim": [
123
+ 512,
124
+ 512,
125
+ 512,
126
+ 512,
127
+ 1500
128
+ ],
129
+ "tdnn_kernel": [
130
+ 5,
131
+ 3,
132
+ 3,
133
+ 1,
134
+ 1
135
+ ],
136
+ "torch_dtype": "float32",
137
+ "transformers_version": "4.18.0",
138
+ "use_weighted_layer_sum": false,
139
+ "vocab_size": 32,
140
+ "xvector_output_dim": 512
141
+ }
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.0,
7
+ "return_attention_mask": true,
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:4a6ae1f1861d8714e590e37caff3307482c7cfd1a2d74e00717643d84a07a870
3
+ size 1262963309
runs/May31_12-04-39_qyffa4ctr1653955753094-7kscp/1653969924.4949615/events.out.tfevents.1653969924.qyffa4ctr1653955753094-7kscp.7581.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1839e6a50ab245cf3c130d3c41e277a623bee5e729f0c5e1037df89d4239d3cd
3
+ size 5139
runs/May31_12-04-39_qyffa4ctr1653955753094-7kscp/events.out.tfevents.1653969924.qyffa4ctr1653955753094-7kscp.7581.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bea7ce97ce1f130784969857df81338c5979049fbbc688187cf1ca3a132fa4e9
3
+ size 9075
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:372727534021d10c326e2191f00abc5b9fa5d417c54a38a1199d9f11bca8cb3c
3
+ size 3247