Training in progress, step 2
Browse files- adapter_config.json +46 -0
- adapter_model.safetensors +3 -0
- preprocessor_config.json +14 -8
- tokenizer.json +8 -1
- tokenizer_config.json +5 -1
- training_args.bin +1 -1
adapter_config.json
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": {
|
4 |
+
"base_model_class": "MusicgenMelodyForConditionalGeneration",
|
5 |
+
"parent_library": "transformers.models.musicgen_melody.modeling_musicgen_melody"
|
6 |
+
},
|
7 |
+
"base_model_name_or_path": "facebook/musicgen-melody",
|
8 |
+
"bias": "none",
|
9 |
+
"fan_in_fan_out": false,
|
10 |
+
"inference_mode": true,
|
11 |
+
"init_lora_weights": true,
|
12 |
+
"layer_replication": null,
|
13 |
+
"layers_pattern": null,
|
14 |
+
"layers_to_transform": null,
|
15 |
+
"loftq_config": {},
|
16 |
+
"lora_alpha": 16,
|
17 |
+
"lora_dropout": 0.05,
|
18 |
+
"megatron_config": null,
|
19 |
+
"megatron_core": "megatron.core",
|
20 |
+
"modules_to_save": null,
|
21 |
+
"peft_type": "LORA",
|
22 |
+
"r": 16,
|
23 |
+
"rank_pattern": {},
|
24 |
+
"revision": null,
|
25 |
+
"target_modules": [
|
26 |
+
"lm_heads.2",
|
27 |
+
"out_proj",
|
28 |
+
"v_proj",
|
29 |
+
"lm_heads.0",
|
30 |
+
"embed_tokens.0",
|
31 |
+
"embed_tokens.2",
|
32 |
+
"enc_to_dec_proj",
|
33 |
+
"fc1",
|
34 |
+
"fc2",
|
35 |
+
"lm_heads.1",
|
36 |
+
"audio_enc_to_dec_proj",
|
37 |
+
"k_proj",
|
38 |
+
"lm_heads.3",
|
39 |
+
"embed_tokens.3",
|
40 |
+
"embed_tokens.1",
|
41 |
+
"q_proj"
|
42 |
+
],
|
43 |
+
"task_type": null,
|
44 |
+
"use_dora": false,
|
45 |
+
"use_rslora": false
|
46 |
+
}
|
adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c3142798424a6ad746c4017b42362be8faab608813a703f306800ddf283d459c
|
3 |
+
size 87103456
|
preprocessor_config.json
CHANGED
@@ -1,11 +1,17 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"feature_extractor_type": "
|
4 |
-
"feature_size":
|
5 |
-
"
|
6 |
-
"
|
|
|
|
|
7 |
"padding_value": 0.0,
|
8 |
-
"processor_class": "
|
9 |
-
"return_attention_mask":
|
10 |
-
"sampling_rate": 32000
|
|
|
|
|
|
|
|
|
11 |
}
|
|
|
1 |
{
|
2 |
+
"chunk_length": 30,
|
3 |
+
"feature_extractor_type": "MusicgenMelodyFeatureExtractor",
|
4 |
+
"feature_size": 12,
|
5 |
+
"hop_length": 4096,
|
6 |
+
"n_fft": 16384,
|
7 |
+
"n_samples": 960000,
|
8 |
+
"padding_side": "right",
|
9 |
"padding_value": 0.0,
|
10 |
+
"processor_class": "MusicgenMelodyProcessor",
|
11 |
+
"return_attention_mask": false,
|
12 |
+
"sampling_rate": 32000,
|
13 |
+
"stem_indices": [
|
14 |
+
3,
|
15 |
+
2
|
16 |
+
]
|
17 |
}
|
tokenizer.json
CHANGED
@@ -1,7 +1,14 @@
|
|
1 |
{
|
2 |
"version": "1.0",
|
3 |
"truncation": null,
|
4 |
-
"padding":
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
"added_tokens": [
|
6 |
{
|
7 |
"id": 0,
|
|
|
1 |
{
|
2 |
"version": "1.0",
|
3 |
"truncation": null,
|
4 |
+
"padding": {
|
5 |
+
"strategy": "BatchLongest",
|
6 |
+
"direction": "Right",
|
7 |
+
"pad_to_multiple_of": null,
|
8 |
+
"pad_id": 0,
|
9 |
+
"pad_type_id": 0,
|
10 |
+
"pad_token": "<pad>"
|
11 |
+
},
|
12 |
"added_tokens": [
|
13 |
{
|
14 |
"id": 0,
|
tokenizer_config.json
CHANGED
@@ -930,9 +930,13 @@
|
|
930 |
"clean_up_tokenization_spaces": true,
|
931 |
"eos_token": "</s>",
|
932 |
"extra_ids": 100,
|
|
|
933 |
"model_max_length": 512,
|
|
|
934 |
"pad_token": "<pad>",
|
935 |
-
"
|
|
|
|
|
936 |
"tokenizer_class": "T5Tokenizer",
|
937 |
"unk_token": "<unk>"
|
938 |
}
|
|
|
930 |
"clean_up_tokenization_spaces": true,
|
931 |
"eos_token": "</s>",
|
932 |
"extra_ids": 100,
|
933 |
+
"max_length": null,
|
934 |
"model_max_length": 512,
|
935 |
+
"pad_to_multiple_of": null,
|
936 |
"pad_token": "<pad>",
|
937 |
+
"pad_token_type_id": 0,
|
938 |
+
"padding_side": "right",
|
939 |
+
"processor_class": "MusicgenMelodyProcessor",
|
940 |
"tokenizer_class": "T5Tokenizer",
|
941 |
"unk_token": "<unk>"
|
942 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5496
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c7c66fdf197f8327a3d3bc1e13c66cee2b398408585e9999c3912a1ec560250e
|
3 |
size 5496
|