Danieljava commited on
Commit
b4549df
·
verified ·
1 Parent(s): 28ee6b1

End of training

Browse files
Files changed (2) hide show
  1. README.md +83 -0
  2. preprocessor_config.json +9 -0
README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ base_model: ntu-spml/distilhubert
5
+ tags:
6
+ - generated_from_trainer
7
+ datasets:
8
+ - calixtemayoraz/FMA-music-dataset
9
+ metrics:
10
+ - accuracy
11
+ model-index:
12
+ - name: distilhubert-finetuned-FMA-music
13
+ results:
14
+ - task:
15
+ name: Audio Classification
16
+ type: audio-classification
17
+ dataset:
18
+ name: FMA-music-dataset
19
+ type: calixtemayoraz/FMA-music-dataset
20
+ metrics:
21
+ - name: Accuracy
22
+ type: accuracy
23
+ value: 0.45754716981132076
24
+ ---
25
+
26
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
27
+ should probably proofread and complete it, then remove this comment. -->
28
+
29
+ # distilhubert-finetuned-FMA-music
30
+
31
+ This model is a fine-tuned version of [ntu-spml/distilhubert](https://huggingface.co/ntu-spml/distilhubert) on the FMA-music-dataset dataset.
32
+ It achieves the following results on the evaluation set:
33
+ - Loss: 1.8929
34
+ - Accuracy: 0.4575
35
+
36
+ ## Model description
37
+
38
+ More information needed
39
+
40
+ ## Intended uses & limitations
41
+
42
+ More information needed
43
+
44
+ ## Training and evaluation data
45
+
46
+ More information needed
47
+
48
+ ## Training procedure
49
+
50
+ ### Training hyperparameters
51
+
52
+ The following hyperparameters were used during training:
53
+ - learning_rate: 5e-05
54
+ - train_batch_size: 8
55
+ - eval_batch_size: 8
56
+ - seed: 42
57
+ - optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
58
+ - lr_scheduler_type: linear
59
+ - lr_scheduler_warmup_steps: 100
60
+ - num_epochs: 10
61
+
62
+ ### Training results
63
+
64
+ | Training Loss | Epoch | Step | Validation Loss | Accuracy |
65
+ |:-------------:|:-----:|:----:|:---------------:|:--------:|
66
+ | 2.0384 | 1.0 | 238 | 2.2583 | 0.2358 |
67
+ | 1.9204 | 2.0 | 476 | 2.1387 | 0.2972 |
68
+ | 1.6768 | 3.0 | 714 | 1.9356 | 0.3774 |
69
+ | 1.7940 | 4.0 | 952 | 1.8584 | 0.3868 |
70
+ | 1.5281 | 5.0 | 1190 | 1.7814 | 0.4434 |
71
+ | 1.1608 | 6.0 | 1428 | 1.8745 | 0.4151 |
72
+ | 1.2103 | 7.0 | 1666 | 1.8066 | 0.4434 |
73
+ | 0.8522 | 8.0 | 1904 | 1.8688 | 0.4434 |
74
+ | 0.7455 | 9.0 | 2142 | 1.8818 | 0.4528 |
75
+ | 0.5444 | 10.0 | 2380 | 1.8929 | 0.4575 |
76
+
77
+
78
+ ### Framework versions
79
+
80
+ - Transformers 5.0.0
81
+ - Pytorch 2.10.0+cu128
82
+ - Datasets 4.0.0
83
+ - Tokenizers 0.22.2
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": true,
8
+ "sampling_rate": 16000
9
+ }