Upload config.json with huggingface_hub
Browse files- config.json +34 -0
config.json
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "conditional_unet",
|
3 |
+
"architecture": "ConditionalUNet",
|
4 |
+
"in_channels": 3,
|
5 |
+
"out_channels": 3,
|
6 |
+
"features": 64,
|
7 |
+
"num_colors": 8,
|
8 |
+
"color_embed_dim": 32,
|
9 |
+
"img_size": 128,
|
10 |
+
"colors": [
|
11 |
+
"blue",
|
12 |
+
"cyan",
|
13 |
+
"green",
|
14 |
+
"magenta",
|
15 |
+
"orange",
|
16 |
+
"purple",
|
17 |
+
"red",
|
18 |
+
"yellow"
|
19 |
+
],
|
20 |
+
"preprocessing": {
|
21 |
+
"normalize": {
|
22 |
+
"mean": [
|
23 |
+
0.485,
|
24 |
+
0.456,
|
25 |
+
0.406
|
26 |
+
],
|
27 |
+
"std": [
|
28 |
+
0.229,
|
29 |
+
0.224,
|
30 |
+
0.225
|
31 |
+
]
|
32 |
+
}
|
33 |
+
}
|
34 |
+
}
|