Commit
·
7c5b1b8
1
Parent(s):
3941338
Create vae/config.json
Browse files- vae/config.json +58 -0
vae/config.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "FlaxAutoencoderKL",
|
| 3 |
+
"_diffusers_version": "0.6.0",
|
| 4 |
+
"act_fn": "silu",
|
| 5 |
+
"block_out_channels": [
|
| 6 |
+
128,
|
| 7 |
+
256,
|
| 8 |
+
512,
|
| 9 |
+
512
|
| 10 |
+
],
|
| 11 |
+
"down_block_types": [
|
| 12 |
+
"DownEncoderBlock2D",
|
| 13 |
+
"DownEncoderBlock2D",
|
| 14 |
+
"DownEncoderBlock2D",
|
| 15 |
+
"DownEncoderBlock2D"
|
| 16 |
+
],
|
| 17 |
+
"in_channels": 3,
|
| 18 |
+
"latent_channels": 4,
|
| 19 |
+
"layers_per_block": 2,
|
| 20 |
+
"norm_num_groups": 32,
|
| 21 |
+
"out_channels": 3,
|
| 22 |
+
"sample_size": 512,
|
| 23 |
+
"up_block_types": [
|
| 24 |
+
"UpDecoderBlock2D",
|
| 25 |
+
"UpDecoderBlock2D",
|
| 26 |
+
"UpDecoderBlock2D",
|
| 27 |
+
"UpDecoderBlock2D"
|
| 28 |
+
]
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
{
|
| 32 |
+
"_class_name": "AutoencoderKL",
|
| 33 |
+
"_diffusers_version": "0.2.4",
|
| 34 |
+
"act_fn": "silu",
|
| 35 |
+
"block_out_channels": [
|
| 36 |
+
128,
|
| 37 |
+
256,
|
| 38 |
+
512,
|
| 39 |
+
512
|
| 40 |
+
],
|
| 41 |
+
"down_block_types": [
|
| 42 |
+
"DownEncoderBlock2D",
|
| 43 |
+
"DownEncoderBlock2D",
|
| 44 |
+
"DownEncoderBlock2D",
|
| 45 |
+
"DownEncoderBlock2D"
|
| 46 |
+
],
|
| 47 |
+
"in_channels": 3,
|
| 48 |
+
"latent_channels": 4,
|
| 49 |
+
"layers_per_block": 2,
|
| 50 |
+
"out_channels": 3,
|
| 51 |
+
"sample_size": 512,
|
| 52 |
+
"up_block_types": [
|
| 53 |
+
"UpDecoderBlock2D",
|
| 54 |
+
"UpDecoderBlock2D",
|
| 55 |
+
"UpDecoderBlock2D",
|
| 56 |
+
"UpDecoderBlock2D"
|
| 57 |
+
]
|
| 58 |
+
}
|