Update config.json
Browse files- config.json +22 -18
config.json
CHANGED
@@ -1,21 +1,25 @@
|
|
1 |
{
|
2 |
-
"
|
3 |
-
"
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
"
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
"
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
}
|
|
|
1 |
{
|
2 |
+
"model_type": "ImageGeneration",
|
3 |
+
"components": {
|
4 |
+
"unet": {
|
5 |
+
"_class_name": "UNet2DConditionModel",
|
6 |
+
"file": "unet/unet.bin"
|
7 |
+
},
|
8 |
+
"vae": {
|
9 |
+
"_class_name": "AutoencoderKL",
|
10 |
+
"file": "vae/vae.bin"
|
11 |
+
},
|
12 |
+
"scheduler": {
|
13 |
+
"_class_name": "DDIMScheduler",
|
14 |
+
"file": "scheduler/scheduler.json"
|
15 |
+
},
|
16 |
+
"text_encoder": {
|
17 |
+
"_class_name": "CLIPTextModel",
|
18 |
+
"file": "text_encoder/text_encoder.bin"
|
19 |
+
},
|
20 |
+
"tokenizer": {
|
21 |
+
"_class_name": "CLIPTokenizer",
|
22 |
+
"file": "tokenizer/tokenizer.json"
|
23 |
+
}
|
24 |
}
|
25 |
}
|