Upload folder using huggingface_hub
Browse files- logs/train_unet/events.out.tfevents.1682791734.60d8e7d74f97.2052.0 +3 -0
- logs/train_unet/events.out.tfevents.1682792174.60d8e7d74f97.3929.0 +3 -0
- logs/train_unet/events.out.tfevents.1682793235.60d8e7d74f97.8341.0 +3 -0
- mel/mel_config.json +11 -0
- model_index.json +20 -0
- scheduler/scheduler_config.json +16 -0
- unet/config.json +49 -0
- unet/diffusion_pytorch_model.bin +3 -0
logs/train_unet/events.out.tfevents.1682791734.60d8e7d74f97.2052.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05d6eac2409868b3e0b7099782484c8bbdce180128111ac4a6b685467d507cfe
|
3 |
+
size 96705
|
logs/train_unet/events.out.tfevents.1682792174.60d8e7d74f97.3929.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e7f9b0b444ddd5b140fa03b45482a9ef7dfb6d1600e6a3de4f73521a304769a6
|
3 |
+
size 247030
|
logs/train_unet/events.out.tfevents.1682793235.60d8e7d74f97.8341.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:553c13963ed064ade8af3208a008f73c5a60d93a77c70ad451745c49f01ecad5
|
3 |
+
size 254730
|
mel/mel_config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "Mel",
|
3 |
+
"_diffusers_version": "0.16.1",
|
4 |
+
"hop_length": 512,
|
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.16.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,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "DDPMScheduler",
|
3 |
+
"_diffusers_version": "0.16.1",
|
4 |
+
"beta_end": 0.02,
|
5 |
+
"beta_schedule": "linear",
|
6 |
+
"beta_start": 0.0001,
|
7 |
+
"clip_sample": true,
|
8 |
+
"clip_sample_range": 1.0,
|
9 |
+
"dynamic_thresholding_ratio": 0.995,
|
10 |
+
"num_train_timesteps": 1000,
|
11 |
+
"prediction_type": "epsilon",
|
12 |
+
"sample_max_value": 1.0,
|
13 |
+
"thresholding": false,
|
14 |
+
"trained_betas": null,
|
15 |
+
"variance_type": "fixed_small"
|
16 |
+
}
|
unet/config.json
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "UNet2DModel",
|
3 |
+
"_diffusers_version": "0.16.1",
|
4 |
+
"act_fn": "silu",
|
5 |
+
"add_attention": true,
|
6 |
+
"attention_head_dim": 8,
|
7 |
+
"block_out_channels": [
|
8 |
+
128,
|
9 |
+
128,
|
10 |
+
256,
|
11 |
+
256,
|
12 |
+
512,
|
13 |
+
512
|
14 |
+
],
|
15 |
+
"center_input_sample": false,
|
16 |
+
"class_embed_type": null,
|
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 |
+
"num_class_embeds": null,
|
34 |
+
"out_channels": 1,
|
35 |
+
"resnet_time_scale_shift": "default",
|
36 |
+
"sample_size": [
|
37 |
+
256,
|
38 |
+
256
|
39 |
+
],
|
40 |
+
"time_embedding_type": "positional",
|
41 |
+
"up_block_types": [
|
42 |
+
"UpBlock2D",
|
43 |
+
"AttnUpBlock2D",
|
44 |
+
"UpBlock2D",
|
45 |
+
"UpBlock2D",
|
46 |
+
"UpBlock2D",
|
47 |
+
"UpBlock2D"
|
48 |
+
]
|
49 |
+
}
|
unet/diffusion_pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa48d4f4ff0178497b2bdb517f250ed91e7f66f83d17b9ecccb29fd6bd589494
|
3 |
+
size 454848893
|