jruaechalar commited on
Commit
bc6151a
verified
1 Parent(s): 4f26078

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +30 -0
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "LetterConditionedUnet",
3
+ "num_classes": 26,
4
+ "class_emb_size": 8,
5
+ "sample_size": 512,
6
+ "in_channels": 9,
7
+ "out_channels": 1,
8
+ "layers_per_block": 2,
9
+ "block_out_channels": [
10
+ 64,
11
+ 128,
12
+ 256,
13
+ 512,
14
+ 512
15
+ ],
16
+ "down_block_types": [
17
+ "DownBlock2D",
18
+ "DownBlock2D",
19
+ "AttnDownBlock2D",
20
+ "AttnDownBlock2D",
21
+ "AttnDownBlock2D"
22
+ ],
23
+ "up_block_types": [
24
+ "AttnUpBlock2D",
25
+ "AttnUpBlock2D",
26
+ "AttnUpBlock2D",
27
+ "UpBlock2D",
28
+ "UpBlock2D"
29
+ ]
30
+ }