canlinzhang commited on
Commit
b840efb
1 Parent(s): e9a8268

Training in progress, epoch 1

Browse files
Files changed (5) hide show
  1. .gitignore +1 -0
  2. config.json +129 -0
  3. preprocessor_config.json +9 -0
  4. pytorch_model.bin +3 -0
  5. training_args.bin +3 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/wav2vec2-base",
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
+ "Wav2Vec2ForSequenceClassification"
10
+ ],
11
+ "attention_dropout": 0.1,
12
+ "bos_token_id": 1,
13
+ "classifier_proj_size": 256,
14
+ "codevector_dim": 256,
15
+ "contrastive_logits_temperature": 0.1,
16
+ "conv_bias": false,
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": "sum",
45
+ "ctc_zero_infinity": false,
46
+ "diversity_loss_weight": 0.1,
47
+ "do_stable_layer_norm": false,
48
+ "eos_token_id": 2,
49
+ "feat_extract_activation": "gelu",
50
+ "feat_extract_norm": "group",
51
+ "feat_proj_dropout": 0.1,
52
+ "feat_quantizer_dropout": 0.0,
53
+ "final_dropout": 0.0,
54
+ "freeze_feat_extract_train": true,
55
+ "hidden_act": "gelu",
56
+ "hidden_dropout": 0.1,
57
+ "hidden_size": 768,
58
+ "id2label": {
59
+ "0": "neu",
60
+ "1": "ang",
61
+ "2": "sad",
62
+ "3": "hap"
63
+ },
64
+ "initializer_range": 0.02,
65
+ "intermediate_size": 3072,
66
+ "label2id": {
67
+ "ang": 1,
68
+ "hap": 3,
69
+ "neu": 0,
70
+ "sad": 2
71
+ },
72
+ "layer_norm_eps": 1e-05,
73
+ "layerdrop": 0.0,
74
+ "mask_channel_length": 10,
75
+ "mask_channel_min_space": 1,
76
+ "mask_channel_other": 0.0,
77
+ "mask_channel_prob": 0.0,
78
+ "mask_channel_selection": "static",
79
+ "mask_feature_length": 10,
80
+ "mask_feature_min_masks": 0,
81
+ "mask_feature_prob": 0.0,
82
+ "mask_time_length": 10,
83
+ "mask_time_min_masks": 2,
84
+ "mask_time_min_space": 1,
85
+ "mask_time_other": 0.0,
86
+ "mask_time_prob": 0.05,
87
+ "mask_time_selection": "static",
88
+ "model_type": "wav2vec2",
89
+ "no_mask_channel_overlap": false,
90
+ "no_mask_time_overlap": false,
91
+ "num_adapter_layers": 3,
92
+ "num_attention_heads": 12,
93
+ "num_codevector_groups": 2,
94
+ "num_codevectors_per_group": 320,
95
+ "num_conv_pos_embedding_groups": 16,
96
+ "num_conv_pos_embeddings": 128,
97
+ "num_feat_extract_layers": 7,
98
+ "num_hidden_layers": 12,
99
+ "num_negatives": 100,
100
+ "output_hidden_size": 768,
101
+ "pad_token_id": 0,
102
+ "proj_codevector_dim": 256,
103
+ "tdnn_dilation": [
104
+ 1,
105
+ 2,
106
+ 3,
107
+ 1,
108
+ 1
109
+ ],
110
+ "tdnn_dim": [
111
+ 512,
112
+ 512,
113
+ 512,
114
+ 512,
115
+ 1500
116
+ ],
117
+ "tdnn_kernel": [
118
+ 5,
119
+ 3,
120
+ 3,
121
+ 1,
122
+ 1
123
+ ],
124
+ "torch_dtype": "float32",
125
+ "transformers_version": "4.26.1",
126
+ "use_weighted_layer_sum": false,
127
+ "vocab_size": 32,
128
+ "xvector_output_dim": 512
129
+ }
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:3b2cbff702ce2aaeac01b422229c7fa2ca40b0e4f05a6fcd7c11dd1d91ff7e18
3
+ size 378349481
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4fe6ec7d24e0753ab2a7a6bbb1ec1da062ad5cc578d6f959e7048fe59eeb0b3
3
+ size 3579