theadamsabra
commited on
Commit
•
e1a9899
1
Parent(s):
9690924
model push
Browse files- mel/mel_config.json +11 -0
- model_index.json +20 -0
- scheduler/scheduler_config.json +12 -0
- unet/config.json +48 -0
- unet/diffusion_pytorch_model.bin +3 -0
mel/mel_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "Mel",
|
3 |
+
"_diffusers_version": "0.11.1",
|
4 |
+
"hop_length": 1024,
|
5 |
+
"n_fft": 2048,
|
6 |
+
"n_iter": 32,
|
7 |
+
"sample_rate": 22050,
|
8 |
+
"top_db": 80,
|
9 |
+
"x_res": 256,
|
10 |
+
"y_res": 256
|
11 |
+
}
|
model_index.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "AudioDiffusionPipeline",
|
3 |
+
"_diffusers_version": "0.11.1",
|
4 |
+
"mel": [
|
5 |
+
"audio_diffusion",
|
6 |
+
"Mel"
|
7 |
+
],
|
8 |
+
"scheduler": [
|
9 |
+
"diffusers",
|
10 |
+
"DDPMScheduler"
|
11 |
+
],
|
12 |
+
"unet": [
|
13 |
+
"diffusers",
|
14 |
+
"UNet2DModel"
|
15 |
+
],
|
16 |
+
"vqvae": [
|
17 |
+
null,
|
18 |
+
null
|
19 |
+
]
|
20 |
+
}
|
scheduler/scheduler_config.json
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "DDPMScheduler",
|
3 |
+
"_diffusers_version": "0.11.1",
|
4 |
+
"beta_end": 0.02,
|
5 |
+
"beta_schedule": "linear",
|
6 |
+
"beta_start": 0.0001,
|
7 |
+
"clip_sample": true,
|
8 |
+
"num_train_timesteps": 1000,
|
9 |
+
"prediction_type": "epsilon",
|
10 |
+
"trained_betas": null,
|
11 |
+
"variance_type": "fixed_small"
|
12 |
+
}
|
unet/config.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "UNet2DModel",
|
3 |
+
"_diffusers_version": "0.11.1",
|
4 |
+
"_name_or_path": "models/oud/checkpoint-3000/unet",
|
5 |
+
"act_fn": "silu",
|
6 |
+
"add_attention": true,
|
7 |
+
"attention_head_dim": 8,
|
8 |
+
"block_out_channels": [
|
9 |
+
128,
|
10 |
+
128,
|
11 |
+
256,
|
12 |
+
256,
|
13 |
+
512,
|
14 |
+
512
|
15 |
+
],
|
16 |
+
"center_input_sample": false,
|
17 |
+
"down_block_types": [
|
18 |
+
"DownBlock2D",
|
19 |
+
"DownBlock2D",
|
20 |
+
"DownBlock2D",
|
21 |
+
"DownBlock2D",
|
22 |
+
"AttnDownBlock2D",
|
23 |
+
"DownBlock2D"
|
24 |
+
],
|
25 |
+
"downsample_padding": 1,
|
26 |
+
"flip_sin_to_cos": true,
|
27 |
+
"freq_shift": 0,
|
28 |
+
"in_channels": 1,
|
29 |
+
"layers_per_block": 2,
|
30 |
+
"mid_block_scale_factor": 1,
|
31 |
+
"norm_eps": 1e-05,
|
32 |
+
"norm_num_groups": 32,
|
33 |
+
"out_channels": 1,
|
34 |
+
"resnet_time_scale_shift": "default",
|
35 |
+
"sample_size": [
|
36 |
+
256,
|
37 |
+
256
|
38 |
+
],
|
39 |
+
"time_embedding_type": "positional",
|
40 |
+
"up_block_types": [
|
41 |
+
"UpBlock2D",
|
42 |
+
"AttnUpBlock2D",
|
43 |
+
"UpBlock2D",
|
44 |
+
"UpBlock2D",
|
45 |
+
"UpBlock2D",
|
46 |
+
"UpBlock2D"
|
47 |
+
]
|
48 |
+
}
|
unet/diffusion_pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d20a56f2875f759548ffa07f8466483a79ec07d4e7e321acc7912cd855674f8
|
3 |
+
size 454840957
|