navidved commited on
Commit
1d2a746
1 Parent(s): 68a8419

Training in progress, epoch 1

Browse files
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: cc-by-nc-sa-4.0
4
+ base_model: amiriparian/ExHuBERT
5
+ tags:
6
+ - generated_from_trainer
7
+ metrics:
8
+ - accuracy
9
+ model-index:
10
+ - name: ExHubert-fine-tuned
11
+ results: []
12
+ ---
13
+
14
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
15
+ should probably proofread and complete it, then remove this comment. -->
16
+
17
+ # ExHubert-fine-tuned
18
+
19
+ This model is a fine-tuned version of [amiriparian/ExHuBERT](https://huggingface.co/amiriparian/ExHuBERT) on the None dataset.
20
+ It achieves the following results on the evaluation set:
21
+ - Loss: 0.4376
22
+ - Accuracy: 0.8392
23
+
24
+ ## Model description
25
+
26
+ More information needed
27
+
28
+ ## Intended uses & limitations
29
+
30
+ More information needed
31
+
32
+ ## Training and evaluation data
33
+
34
+ More information needed
35
+
36
+ ## Training procedure
37
+
38
+ ### Training hyperparameters
39
+
40
+ The following hyperparameters were used during training:
41
+ - learning_rate: 1e-05
42
+ - train_batch_size: 4
43
+ - eval_batch_size: 4
44
+ - seed: 42
45
+ - optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
46
+ - lr_scheduler_type: linear
47
+ - num_epochs: 4
48
+
49
+ ### Training results
50
+
51
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
52
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|
53
+ | 0.7396 | 1.0 | 64 | 0.7444 | 0.6118 |
54
+ | 0.6937 | 2.0 | 128 | 0.5704 | 0.7647 |
55
+ | 0.4416 | 3.0 | 192 | 0.4876 | 0.8039 |
56
+ | 0.5393 | 4.0 | 256 | 0.4376 | 0.8392 |
57
+
58
+
59
+ ### Framework versions
60
+
61
+ - Transformers 4.47.1
62
+ - Pytorch 2.5.1+cu121
63
+ - Datasets 3.2.0
64
+ - Tokenizers 0.21.0
angerpart8.wav ADDED
Binary file (240 kB). View file
 
config.json ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "amiriparian/ExHuBERT",
3
+ "activation_dropout": 0.1,
4
+ "apply_spec_augment": true,
5
+ "architectures": [
6
+ "ExHuBERT"
7
+ ],
8
+ "attention_dropout": 0.1,
9
+ "auto_map": {
10
+ "AutoModelForAudioClassification": "amiriparian/ExHuBERT--ExHuBERT_model.ExHuBERT"
11
+ },
12
+ "bos_token_id": 1,
13
+ "classifier_proj_size": 256,
14
+ "conv_bias": true,
15
+ "conv_dim": [
16
+ 512,
17
+ 512,
18
+ 512,
19
+ 512,
20
+ 512,
21
+ 512,
22
+ 512
23
+ ],
24
+ "conv_kernel": [
25
+ 10,
26
+ 3,
27
+ 3,
28
+ 3,
29
+ 3,
30
+ 2,
31
+ 2
32
+ ],
33
+ "conv_stride": [
34
+ 5,
35
+ 2,
36
+ 2,
37
+ 2,
38
+ 2,
39
+ 2,
40
+ 2
41
+ ],
42
+ "ctc_loss_reduction": "sum",
43
+ "ctc_zero_infinity": false,
44
+ "diversity_loss_weight": 0.1,
45
+ "do_stable_layer_norm": true,
46
+ "eos_token_id": 2,
47
+ "feat_extract_activation": "gelu",
48
+ "feat_extract_dropout": 0.0,
49
+ "feat_extract_norm": "layer",
50
+ "feat_proj_dropout": 0.1,
51
+ "feat_proj_layer_norm": true,
52
+ "final_dropout": 0.1,
53
+ "gradient_checkpointing": false,
54
+ "hidden_act": "gelu",
55
+ "hidden_dropout": 0.1,
56
+ "hidden_dropout_prob": 0.1,
57
+ "hidden_size": 1024,
58
+ "id2label": {
59
+ "0": "LABEL_0",
60
+ "1": "LABEL_1",
61
+ "2": "LABEL_2",
62
+ "3": "LABEL_3",
63
+ "4": "LABEL_4",
64
+ "5": "LABEL_5"
65
+ },
66
+ "initializer_range": 0.02,
67
+ "intermediate_size": 4096,
68
+ "label2id": {
69
+ "LABEL_0": 0,
70
+ "LABEL_1": 1,
71
+ "LABEL_2": 2,
72
+ "LABEL_3": 3,
73
+ "LABEL_4": 4,
74
+ "LABEL_5": 5
75
+ },
76
+ "layer_norm_eps": 1e-05,
77
+ "layerdrop": 0.1,
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_prob": 0.05,
84
+ "model_type": "hubert",
85
+ "num_attention_heads": 16,
86
+ "num_conv_pos_embedding_groups": 16,
87
+ "num_conv_pos_embeddings": 128,
88
+ "num_feat_extract_layers": 7,
89
+ "num_hidden_layers": 48,
90
+ "pad_token_id": 0,
91
+ "torch_dtype": "float32",
92
+ "transformers_version": "4.47.1",
93
+ "use_weighted_layer_sum": false,
94
+ "vocab_size": 32
95
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:178938ad40bdd2cacc37c2c80b48a79eb59f4b7e21949b5b047fb949125bf1d6
3
+ size 2673683572
part2.wav ADDED
Binary file (240 kB). View file
 
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
+ }
runs/Dec21_13-24-25_8d0cb1931a2d/events.out.tfevents.1734787468.8d0cb1931a2d.7155.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e3aa1e06d7e0e3829a65f4b3896d64f4211212079b585804d444e9eea528858
3
+ size 88
runs/Dec21_13-45-53_8d0cb1931a2d/events.out.tfevents.1734788766.8d0cb1931a2d.7155.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4226d9fdad88276e1b6666377fbb4188d26eedb786b4eee974937bc066a70c35
3
+ size 88
runs/Dec21_13-46-51_8d0cb1931a2d/events.out.tfevents.1734788823.8d0cb1931a2d.7155.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e4fa2099634537a37dbd2ffc89c020681387f46237df599b5b9e41f1fc37c78
3
+ size 88
runs/Dec21_13-55-45_4281c0c1b228/events.out.tfevents.1734789348.4281c0c1b228.239.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b233bf2ea49c98667b0b54ca27e61afeac2d2d1ecc0b9dcca184a1e6fd063ff
3
+ size 9251
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65189642066a7492b452de63baf4235f0e891ce4eacb3b7626b6237403c7542a
3
+ size 5496