Upload folder using huggingface_hub
Browse files- config.json +19 -0
config.json
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"sample_size": 32,
|
3 |
+
"in_channels": 3,
|
4 |
+
"out_channels": 3,
|
5 |
+
"layers_per_block": 2,
|
6 |
+
"block_out_channels": [128, 256, 256, 256],
|
7 |
+
"down_block_types": [
|
8 |
+
"DownBlock2D",
|
9 |
+
"AttnDownBlock2D",
|
10 |
+
"DownBlock2D",
|
11 |
+
"DownBlock2D"
|
12 |
+
],
|
13 |
+
"up_block_types": [
|
14 |
+
"UpBlock2D",
|
15 |
+
"UpBlock2D",
|
16 |
+
"AttnUpBlock2D",
|
17 |
+
"UpBlock2D"
|
18 |
+
]
|
19 |
+
}
|