Danilo Toapanta
commited on
Commit
•
0865df6
1
Parent(s):
34dd303
add: model checkpoint and configuration files
Browse files- checkpoint/config.json +96 -0
- checkpoint/model.safetensors +3 -0
- checkpoint/optimizer.pt +3 -0
- checkpoint/preprocessor_config.json +9 -0
- checkpoint/rng_state.pth +3 -0
- checkpoint/scheduler.pt +3 -0
- checkpoint/trainer_state.json +42 -0
- checkpoint/training_args.bin +3 -0
checkpoint/config.json
ADDED
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/home/scur0997/fame_of_god_models/checkpoint-480-79",
|
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,
|
14 |
+
512,
|
15 |
+
512,
|
16 |
+
512,
|
17 |
+
512,
|
18 |
+
512,
|
19 |
+
512
|
20 |
+
],
|
21 |
+
"conv_kernel": [
|
22 |
+
10,
|
23 |
+
3,
|
24 |
+
3,
|
25 |
+
3,
|
26 |
+
3,
|
27 |
+
2,
|
28 |
+
2
|
29 |
+
],
|
30 |
+
"conv_stride": [
|
31 |
+
5,
|
32 |
+
2,
|
33 |
+
2,
|
34 |
+
2,
|
35 |
+
2,
|
36 |
+
2,
|
37 |
+
2
|
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": "blues",
|
53 |
+
"1": "classical",
|
54 |
+
"2": "country",
|
55 |
+
"3": "disco",
|
56 |
+
"4": "hiphop",
|
57 |
+
"5": "jazz",
|
58 |
+
"6": "metal",
|
59 |
+
"7": "pop",
|
60 |
+
"8": "reggae",
|
61 |
+
"9": "rock"
|
62 |
+
},
|
63 |
+
"initializer_range": 0.02,
|
64 |
+
"intermediate_size": 3072,
|
65 |
+
"label2id": {
|
66 |
+
"blues": "0",
|
67 |
+
"classical": "1",
|
68 |
+
"country": "2",
|
69 |
+
"disco": "3",
|
70 |
+
"hiphop": "4",
|
71 |
+
"jazz": "5",
|
72 |
+
"metal": "6",
|
73 |
+
"pop": "7",
|
74 |
+
"reggae": "8",
|
75 |
+
"rock": "9"
|
76 |
+
},
|
77 |
+
"layer_norm_eps": 1e-05,
|
78 |
+
"layerdrop": 0.0,
|
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_prob": 0.05,
|
85 |
+
"model_type": "hubert",
|
86 |
+
"num_attention_heads": 12,
|
87 |
+
"num_conv_pos_embedding_groups": 16,
|
88 |
+
"num_conv_pos_embeddings": 128,
|
89 |
+
"num_feat_extract_layers": 7,
|
90 |
+
"num_hidden_layers": 2,
|
91 |
+
"pad_token_id": 0,
|
92 |
+
"torch_dtype": "float32",
|
93 |
+
"transformers_version": "4.41.2",
|
94 |
+
"use_weighted_layer_sum": false,
|
95 |
+
"vocab_size": 32
|
96 |
+
}
|
checkpoint/model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2391a8bc3171249940db4fbbf429fcd1b4ca214c52d121bda3d9c20a5ee68dc7
|
3 |
+
size 94771680
|
checkpoint/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7f66f2d58e86f5782f18cfc70c735cbf50561fb515d47a6485ff405cd187052d
|
3 |
+
size 189567817
|
checkpoint/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 |
+
}
|
checkpoint/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3ad84e2eb801fc751e9c947f79f1b25b37b7e1e3ce1f6dece5dab2a33742933
|
3 |
+
size 14503
|
checkpoint/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0a91b37ba16aaeb727a7f4a9528a65cc6e47a31e03b86be9ca700d2b7bcdd401
|
3 |
+
size 623
|
checkpoint/trainer_state.json
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": 0.80625,
|
3 |
+
"best_model_checkpoint": "hubert_gtzan_transfer_learning/checkpoint-160",
|
4 |
+
"epoch": 1.0,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 160,
|
7 |
+
"is_hyper_param_search": false,
|
8 |
+
"is_local_process_zero": true,
|
9 |
+
"is_world_process_zero": true,
|
10 |
+
"log_history": [
|
11 |
+
{
|
12 |
+
"epoch": 1.0,
|
13 |
+
"eval_accuracy": 0.80625,
|
14 |
+
"eval_loss": 0.6718776822090149,
|
15 |
+
"eval_runtime": 164.4867,
|
16 |
+
"eval_samples_per_second": 1.945,
|
17 |
+
"eval_steps_per_second": 0.243,
|
18 |
+
"step": 160
|
19 |
+
}
|
20 |
+
],
|
21 |
+
"logging_steps": 500,
|
22 |
+
"max_steps": 2400,
|
23 |
+
"num_input_tokens_seen": 0,
|
24 |
+
"num_train_epochs": 15,
|
25 |
+
"save_steps": 500,
|
26 |
+
"stateful_callbacks": {
|
27 |
+
"TrainerControl": {
|
28 |
+
"args": {
|
29 |
+
"should_epoch_stop": false,
|
30 |
+
"should_evaluate": false,
|
31 |
+
"should_log": false,
|
32 |
+
"should_save": true,
|
33 |
+
"should_training_stop": false
|
34 |
+
},
|
35 |
+
"attributes": {}
|
36 |
+
}
|
37 |
+
},
|
38 |
+
"total_flos": 8.719952185728e+16,
|
39 |
+
"train_batch_size": 8,
|
40 |
+
"trial_name": null,
|
41 |
+
"trial_params": null
|
42 |
+
}
|
checkpoint/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f4ce87e7908e05fda0b12c4c5d0bc90d1a5fa4836726a6930f902409992843d
|
3 |
+
size 4655
|