Upload StableAudioPipeline
Browse files- scheduler/scheduler_config.json +4 -1
- tokenizer/tokenizer_config.json +1 -2
- transformer/config.json +1 -0
- vae/config.json +2 -1
scheduler/scheduler_config.json
CHANGED
@@ -14,12 +14,15 @@
|
|
14 |
"prediction_type": "epsilon",
|
15 |
"rescale_betas_zero_snr": false,
|
16 |
"sample_max_value": 1.0,
|
17 |
-
"
|
|
|
|
|
18 |
"solver_type": "midpoint",
|
19 |
"steps_offset": 0,
|
20 |
"thresholding": false,
|
21 |
"timestep_spacing": "linspace",
|
22 |
"trained_betas": null,
|
|
|
23 |
"use_karras_sigmas": false,
|
24 |
"use_lu_lambdas": false,
|
25 |
"variance_type": null
|
|
|
14 |
"prediction_type": "epsilon",
|
15 |
"rescale_betas_zero_snr": false,
|
16 |
"sample_max_value": 1.0,
|
17 |
+
"sigma_max": 500,
|
18 |
+
"sigma_min": 0.3,
|
19 |
+
"solver_order": 2,
|
20 |
"solver_type": "midpoint",
|
21 |
"steps_offset": 0,
|
22 |
"thresholding": false,
|
23 |
"timestep_spacing": "linspace",
|
24 |
"trained_betas": null,
|
25 |
+
"use_exponential_sigmas": true,
|
26 |
"use_karras_sigmas": false,
|
27 |
"use_lu_lambdas": false,
|
28 |
"variance_type": null
|
tokenizer/tokenizer_config.json
CHANGED
@@ -930,8 +930,7 @@
|
|
930 |
"clean_up_tokenization_spaces": true,
|
931 |
"eos_token": "</s>",
|
932 |
"extra_ids": 100,
|
933 |
-
"
|
934 |
-
"model_max_length": 1000000000000000019884624838656,
|
935 |
"pad_token": "<pad>",
|
936 |
"tokenizer_class": "T5Tokenizer",
|
937 |
"truncation": true,
|
|
|
930 |
"clean_up_tokenization_spaces": true,
|
931 |
"eos_token": "</s>",
|
932 |
"extra_ids": 100,
|
933 |
+
"model_max_length": 128,
|
|
|
934 |
"pad_token": "<pad>",
|
935 |
"tokenizer_class": "T5Tokenizer",
|
936 |
"truncation": true,
|
transformer/config.json
CHANGED
@@ -10,5 +10,6 @@
|
|
10 |
"num_key_value_attention_heads": 12,
|
11 |
"num_layers": 24,
|
12 |
"out_channels": 64,
|
|
|
13 |
"timestep_features_dim": 256
|
14 |
}
|
|
|
10 |
"num_key_value_attention_heads": 12,
|
11 |
"num_layers": 24,
|
12 |
"out_channels": 64,
|
13 |
+
"sample_size": 1024.0,
|
14 |
"timestep_features_dim": 256
|
15 |
}
|
vae/config.json
CHANGED
@@ -18,5 +18,6 @@
|
|
18 |
8,
|
19 |
8
|
20 |
],
|
21 |
-
"encoder_hidden_size": 128
|
|
|
22 |
}
|
|
|
18 |
8,
|
19 |
8
|
20 |
],
|
21 |
+
"encoder_hidden_size": 128,
|
22 |
+
"sampling_rate": 44100
|
23 |
}
|