Create config.json
Browse files- vae/config.json +14 -0
vae/config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKL",
|
| 3 |
+
"_diffusers_version": "0.30.0",
|
| 4 |
+
"act_fn": "silu",
|
| 5 |
+
"block_out_channels": [128, 256, 512, 512],
|
| 6 |
+
"down_block_types": ["DownEncoderBlock2D", "DownEncoderBlock2D", "DownEncoderBlock2D", "DownEncoderBlock2D"],
|
| 7 |
+
"latent_channels": 4,
|
| 8 |
+
"norm_num_groups": 32,
|
| 9 |
+
"sample_size": 256,
|
| 10 |
+
"scaling_factor": 0.18215,
|
| 11 |
+
"up_block_types": ["UpDecoderBlock2D", "UpDecoderBlock2D", "UpDecoderBlock2D", "UpDecoderBlock2D"],
|
| 12 |
+
"in_channels": 3,
|
| 13 |
+
"out_channels": 3
|
| 14 |
+
}
|