Create config.json
Browse files- config.json +36 -0
config.json
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_class_name": "StableDiffusionConfig",
|
3 |
+
"model_type": "stable-diffusion",
|
4 |
+
"image_size": 512,
|
5 |
+
"num_channels": 4,
|
6 |
+
"in_channels": 4,
|
7 |
+
"out_channels": 4,
|
8 |
+
"block_out_channels": [
|
9 |
+
320,
|
10 |
+
640,
|
11 |
+
1280,
|
12 |
+
1280
|
13 |
+
],
|
14 |
+
"layers_per_block": 2,
|
15 |
+
"attention_resolutions": [
|
16 |
+
16,
|
17 |
+
8,
|
18 |
+
4
|
19 |
+
],
|
20 |
+
"dropout": 0.0,
|
21 |
+
"model_channels": 320,
|
22 |
+
"num_heads": 8,
|
23 |
+
"num_res_blocks": 2,
|
24 |
+
"num_classes": null,
|
25 |
+
"channel_mult": [
|
26 |
+
1,
|
27 |
+
2,
|
28 |
+
4,
|
29 |
+
4
|
30 |
+
],
|
31 |
+
"context_dim": 768,
|
32 |
+
"use_fp16": true,
|
33 |
+
"use_scale_shift_norm": true,
|
34 |
+
"tokenizer": "openai/clip-vit-large-patch14",
|
35 |
+
"sample_size": 64
|
36 |
+
}
|