colt12 commited on
Commit
eaed49b
·
verified ·
1 Parent(s): b2a291a

Create vae/config.json

Browse files
Files changed (1) hide show
  1. vae/config.json +24 -0
vae/config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "AutoencoderKL",
3
+ "_diffusers_version": "0.26.0",
4
+ "act_fn": "silu",
5
+ "block_out_channels": [128, 256, 512, 512],
6
+ "down_block_types": [
7
+ "DownEncoderBlock2D",
8
+ "DownEncoderBlock2D",
9
+ "DownEncoderBlock2D",
10
+ "DownEncoderBlock2D"
11
+ ],
12
+ "in_channels": 3,
13
+ "latent_channels": 4,
14
+ "layers_per_block": 2,
15
+ "norm_num_groups": 32,
16
+ "out_channels": 3,
17
+ "sample_size": 256,
18
+ "up_block_types": [
19
+ "UpDecoderBlock2D",
20
+ "UpDecoderBlock2D",
21
+ "UpDecoderBlock2D",
22
+ "UpDecoderBlock2D"
23
+ ]
24
+ }