shiftxie commited on
Commit
1d54964
1 Parent(s): ccd1fd2

Training in progress, epoch 0

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/wav2vec2-base",
3
+ "activation_dropout": 0.0,
4
+ "apply_spec_augment": true,
5
+ "architectures": [
6
+ "Wav2Vec2ForSequenceClassification"
7
+ ],
8
+ "attention_dropout": 0.1,
9
+ "bos_token_id": 1,
10
+ "classifier_proj_size": 256,
11
+ "codevector_dim": 256,
12
+ "contrastive_logits_temperature": 0.1,
13
+ "conv_bias": false,
14
+ "conv_dim": [
15
+ 512,
16
+ 512,
17
+ 512,
18
+ 512,
19
+ 512,
20
+ 512,
21
+ 512
22
+ ],
23
+ "conv_kernel": [
24
+ 10,
25
+ 3,
26
+ 3,
27
+ 3,
28
+ 3,
29
+ 2,
30
+ 2
31
+ ],
32
+ "conv_stride": [
33
+ 5,
34
+ 2,
35
+ 2,
36
+ 2,
37
+ 2,
38
+ 2,
39
+ 2
40
+ ],
41
+ "ctc_loss_reduction": "sum",
42
+ "ctc_zero_infinity": false,
43
+ "diversity_loss_weight": 0.1,
44
+ "do_stable_layer_norm": false,
45
+ "eos_token_id": 2,
46
+ "feat_extract_activation": "gelu",
47
+ "feat_extract_norm": "group",
48
+ "feat_proj_dropout": 0.1,
49
+ "feat_quantizer_dropout": 0.0,
50
+ "final_dropout": 0.0,
51
+ "freeze_feat_extract_train": true,
52
+ "hidden_act": "gelu",
53
+ "hidden_dropout": 0.1,
54
+ "hidden_size": 768,
55
+ "id2label": {
56
+ "0": "abroad",
57
+ "1": "address",
58
+ "10": "high_value_payment",
59
+ "11": "joint_account",
60
+ "12": "latest_transactions",
61
+ "13": "pay_bill",
62
+ "2": "app_error",
63
+ "3": "atm_limit",
64
+ "4": "balance",
65
+ "5": "business_loan",
66
+ "6": "card_issues",
67
+ "7": "cash_deposit",
68
+ "8": "direct_debit",
69
+ "9": "freeze"
70
+ },
71
+ "initializer_range": 0.02,
72
+ "intermediate_size": 3072,
73
+ "label2id": {
74
+ "abroad": "0",
75
+ "address": "1",
76
+ "app_error": "2",
77
+ "atm_limit": "3",
78
+ "balance": "4",
79
+ "business_loan": "5",
80
+ "card_issues": "6",
81
+ "cash_deposit": "7",
82
+ "direct_debit": "8",
83
+ "freeze": "9",
84
+ "high_value_payment": "10",
85
+ "joint_account": "11",
86
+ "latest_transactions": "12",
87
+ "pay_bill": "13"
88
+ },
89
+ "layer_norm_eps": 1e-05,
90
+ "layerdrop": 0.0,
91
+ "mask_channel_length": 10,
92
+ "mask_channel_min_space": 1,
93
+ "mask_channel_other": 0.0,
94
+ "mask_channel_prob": 0.0,
95
+ "mask_channel_selection": "static",
96
+ "mask_feature_length": 10,
97
+ "mask_feature_prob": 0.0,
98
+ "mask_time_length": 10,
99
+ "mask_time_min_space": 1,
100
+ "mask_time_other": 0.0,
101
+ "mask_time_prob": 0.05,
102
+ "mask_time_selection": "static",
103
+ "model_type": "wav2vec2",
104
+ "no_mask_channel_overlap": false,
105
+ "no_mask_time_overlap": false,
106
+ "num_attention_heads": 12,
107
+ "num_codevector_groups": 2,
108
+ "num_codevectors_per_group": 320,
109
+ "num_conv_pos_embedding_groups": 16,
110
+ "num_conv_pos_embeddings": 128,
111
+ "num_feat_extract_layers": 7,
112
+ "num_hidden_layers": 12,
113
+ "num_negatives": 100,
114
+ "pad_token_id": 0,
115
+ "proj_codevector_dim": 256,
116
+ "torch_dtype": "float32",
117
+ "transformers_version": "4.11.3",
118
+ "use_weighted_layer_sum": false,
119
+ "vocab_size": 32
120
+ }
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": 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:6ef4f90efbf43455ebe5f3458f6765587609eb570fae77ad03095684ba2df907
3
+ size 378372905
runs/Feb20_18-01-16_MacdeMacBook-Pro-3.local/1708423283.433677/events.out.tfevents.1708423283.MacdeMacBook-Pro-3.local.81364.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfea1f81e5f84fa1a96038b78b7fcc056806b648bcf25c1a712ad67e79e86242
3
+ size 4571
runs/Feb20_18-01-16_MacdeMacBook-Pro-3.local/events.out.tfevents.1708423283.MacdeMacBook-Pro-3.local.81364.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbc08e4c38f16ad3923f14ca2ae0c02eb26fd3e920968e9a1890817d6f64a0ed
3
+ size 5551
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2172147d9fb36c6aab92d3a75cc7570b3d5c2c3903a345d632f6b2aa35def70
3
+ size 2875