benjamin-paine commited on
Commit
1eba3ec
·
verified ·
1 Parent(s): b909f92

Upload Flux2TinyAutoEncoder

Browse files
Files changed (1) hide show
  1. config.json +37 -0
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_class_name": "Flux2TinyAutoEncoder",
3
+ "_diffusers_version": "0.35.2",
4
+ "act_fn": "silu",
5
+ "decoder_block_out_channels": [
6
+ 64,
7
+ 64,
8
+ 64,
9
+ 64
10
+ ],
11
+ "encoder_block_out_channels": [
12
+ 64,
13
+ 64,
14
+ 64,
15
+ 64
16
+ ],
17
+ "force_upcast": false,
18
+ "in_channels": 3,
19
+ "latent_channels": 128,
20
+ "latent_magnitude": 3.0,
21
+ "latent_shift": 0.5,
22
+ "num_decoder_blocks": [
23
+ 3,
24
+ 3,
25
+ 3,
26
+ 1
27
+ ],
28
+ "num_encoder_blocks": [
29
+ 1,
30
+ 3,
31
+ 3,
32
+ 3
33
+ ],
34
+ "out_channels": 3,
35
+ "scaling_factor": 0.13025,
36
+ "upsampling_scaling_factor": 2
37
+ }