sravan-gorugantu commited on
Commit
6bb7783
1 Parent(s): bf0c492

Training in progress, epoch 0

Browse files
config.json CHANGED
@@ -1,13 +1,19 @@
1
  {
2
- "_name_or_path": "ntu-spml/distilhubert",
3
- "activation_dropout": 0.1,
4
- "apply_spec_augment": false,
 
 
 
 
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,
@@ -38,47 +44,85 @@
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_norm": "group",
45
- "feat_proj_dropout": 0.0,
46
- "feat_proj_layer_norm": false,
47
  "final_dropout": 0.0,
 
48
  "hidden_act": "gelu",
49
  "hidden_dropout": 0.1,
50
  "hidden_size": 768,
51
  "id2label": {
52
  "0": "door_close",
53
  "1": "door_open",
54
- "2": "door_stop",
55
- "3": "unknown"
56
  },
57
  "initializer_range": 0.02,
58
  "intermediate_size": 3072,
59
  "label2id": {
60
  "door_close": "0",
61
  "door_open": "1",
62
- "door_stop": "2",
63
- "unknown": "3"
64
  },
65
  "layer_norm_eps": 1e-05,
66
  "layerdrop": 0.0,
 
 
 
 
 
67
  "mask_feature_length": 10,
68
  "mask_feature_min_masks": 0,
69
  "mask_feature_prob": 0.0,
70
  "mask_time_length": 10,
71
  "mask_time_min_masks": 2,
 
 
72
  "mask_time_prob": 0.05,
73
- "model_type": "hubert",
 
 
 
 
74
  "num_attention_heads": 12,
 
 
75
  "num_conv_pos_embedding_groups": 16,
76
  "num_conv_pos_embeddings": 128,
77
  "num_feat_extract_layers": 7,
78
- "num_hidden_layers": 2,
 
 
79
  "pad_token_id": 0,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  "torch_dtype": "float32",
81
  "transformers_version": "4.38.1",
82
  "use_weighted_layer_sum": false,
83
- "vocab_size": 32
 
84
  }
 
1
  {
2
+ "_name_or_path": "facebook/wav2vec2-base",
3
+ "activation_dropout": 0.0,
4
+ "adapter_attn_dim": null,
5
+ "adapter_kernel_size": 3,
6
+ "adapter_stride": 2,
7
+ "add_adapter": false,
8
+ "apply_spec_augment": true,
9
  "architectures": [
10
+ "Wav2Vec2ForSequenceClassification"
11
  ],
12
  "attention_dropout": 0.1,
13
  "bos_token_id": 1,
14
  "classifier_proj_size": 256,
15
+ "codevector_dim": 256,
16
+ "contrastive_logits_temperature": 0.1,
17
  "conv_bias": false,
18
  "conv_dim": [
19
  512,
 
44
  ],
45
  "ctc_loss_reduction": "sum",
46
  "ctc_zero_infinity": false,
47
+ "diversity_loss_weight": 0.1,
48
  "do_stable_layer_norm": false,
49
  "eos_token_id": 2,
50
  "feat_extract_activation": "gelu",
51
  "feat_extract_norm": "group",
52
+ "feat_proj_dropout": 0.1,
53
+ "feat_quantizer_dropout": 0.0,
54
  "final_dropout": 0.0,
55
+ "freeze_feat_extract_train": true,
56
  "hidden_act": "gelu",
57
  "hidden_dropout": 0.1,
58
  "hidden_size": 768,
59
  "id2label": {
60
  "0": "door_close",
61
  "1": "door_open",
62
+ "2": "unknown"
 
63
  },
64
  "initializer_range": 0.02,
65
  "intermediate_size": 3072,
66
  "label2id": {
67
  "door_close": "0",
68
  "door_open": "1",
69
+ "unknown": "2"
 
70
  },
71
  "layer_norm_eps": 1e-05,
72
  "layerdrop": 0.0,
73
+ "mask_channel_length": 10,
74
+ "mask_channel_min_space": 1,
75
+ "mask_channel_other": 0.0,
76
+ "mask_channel_prob": 0.0,
77
+ "mask_channel_selection": "static",
78
  "mask_feature_length": 10,
79
  "mask_feature_min_masks": 0,
80
  "mask_feature_prob": 0.0,
81
  "mask_time_length": 10,
82
  "mask_time_min_masks": 2,
83
+ "mask_time_min_space": 1,
84
+ "mask_time_other": 0.0,
85
  "mask_time_prob": 0.05,
86
+ "mask_time_selection": "static",
87
+ "model_type": "wav2vec2",
88
+ "no_mask_channel_overlap": false,
89
+ "no_mask_time_overlap": false,
90
+ "num_adapter_layers": 3,
91
  "num_attention_heads": 12,
92
+ "num_codevector_groups": 2,
93
+ "num_codevectors_per_group": 320,
94
  "num_conv_pos_embedding_groups": 16,
95
  "num_conv_pos_embeddings": 128,
96
  "num_feat_extract_layers": 7,
97
+ "num_hidden_layers": 12,
98
+ "num_negatives": 100,
99
+ "output_hidden_size": 768,
100
  "pad_token_id": 0,
101
+ "proj_codevector_dim": 256,
102
+ "tdnn_dilation": [
103
+ 1,
104
+ 2,
105
+ 3,
106
+ 1,
107
+ 1
108
+ ],
109
+ "tdnn_dim": [
110
+ 512,
111
+ 512,
112
+ 512,
113
+ 512,
114
+ 1500
115
+ ],
116
+ "tdnn_kernel": [
117
+ 5,
118
+ 3,
119
+ 3,
120
+ 1,
121
+ 1
122
+ ],
123
  "torch_dtype": "float32",
124
  "transformers_version": "4.38.1",
125
  "use_weighted_layer_sum": false,
126
+ "vocab_size": 32,
127
+ "xvector_output_dim": 512
128
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b38ebbd5899a88277dbada6b109fd69b44e3eda55bb2e5782d2774ef7bfef48d
3
- size 94765560
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfb612d9bcfd1bef3eca6c2e9ece25a6ee595f01f8c53a995399b322b4a33898
3
+ size 378303396
preprocessor_config.json CHANGED
@@ -1,9 +1,9 @@
1
  {
2
- "do_normalize": false,
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
  }
 
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
  }
runs/Mar29_15-21-21_voice-ai-transformer/events.out.tfevents.1711725682.voice-ai-transformer.2639432.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:273cde16df397c7f695c5625c249fcd3bee282b5d0d3922224a7ad23fe0ddfe6
3
+ size 21880
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:80ece0cec4dee5dccc81c1c2a01b1b1ada4c5a22470073f353614fc50410dcaa
3
  size 4920
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2dd590b792286333e70350caf28912007a401f3771cbae0b05011a225ed8f30
3
  size 4920