JasonJwba
commited on
Commit
•
b1ad5d2
1
Parent(s):
5fdfd96
Update config.json
Browse files- config.json +28 -56
config.json
CHANGED
@@ -1,61 +1,33 @@
|
|
1 |
{
|
2 |
-
"_class_name": "
|
3 |
"_diffusers_version": "0.17.1",
|
4 |
-
"
|
5 |
-
|
6 |
-
|
7 |
-
"attention_head_dim": 8,
|
8 |
-
"block_out_channels": [
|
9 |
-
320,
|
10 |
-
640,
|
11 |
-
1280,
|
12 |
-
1280
|
13 |
],
|
14 |
-
"
|
15 |
-
"
|
16 |
-
|
17 |
-
|
18 |
-
"conv_out_kernel": 3,
|
19 |
-
"cross_attention_dim": 768,
|
20 |
-
"cross_attention_norm": null,
|
21 |
-
"down_block_types": [
|
22 |
-
"CrossAttnDownBlock2D",
|
23 |
-
"CrossAttnDownBlock2D",
|
24 |
-
"CrossAttnDownBlock2D",
|
25 |
-
"DownBlock2D"
|
26 |
],
|
27 |
-
"
|
28 |
-
|
29 |
-
|
30 |
-
"encoder_hid_dim_type": null,
|
31 |
-
"flip_sin_to_cos": true,
|
32 |
-
"freq_shift": 0,
|
33 |
-
"in_channels": 4,
|
34 |
-
"layers_per_block": 2,
|
35 |
-
"mid_block_only_cross_attention": null,
|
36 |
-
"mid_block_scale_factor": 1,
|
37 |
-
"mid_block_type": "UNetMidBlock2DCrossAttn",
|
38 |
-
"norm_eps": 1e-05,
|
39 |
-
"norm_num_groups": 32,
|
40 |
-
"num_class_embeds": null,
|
41 |
-
"only_cross_attention": false,
|
42 |
-
"out_channels": 4,
|
43 |
-
"projection_class_embeddings_input_dim": null,
|
44 |
-
"resnet_out_scale_factor": 1.0,
|
45 |
-
"resnet_skip_time_act": false,
|
46 |
-
"resnet_time_scale_shift": "default",
|
47 |
-
"sample_size": 64,
|
48 |
-
"time_cond_proj_dim": null,
|
49 |
-
"time_embedding_act_fn": null,
|
50 |
-
"time_embedding_dim": null,
|
51 |
-
"time_embedding_type": "positional",
|
52 |
-
"timestep_post_act": null,
|
53 |
-
"up_block_types": [
|
54 |
-
"UpBlock2D",
|
55 |
-
"CrossAttnUpBlock2D",
|
56 |
-
"CrossAttnUpBlock2D",
|
57 |
-
"CrossAttnUpBlock2D"
|
58 |
],
|
59 |
-
"
|
60 |
-
|
61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
{
|
2 |
+
"_class_name": "StableDiffusionPipeline",
|
3 |
"_diffusers_version": "0.17.1",
|
4 |
+
"feature_extractor": [
|
5 |
+
"transformers",
|
6 |
+
"CLIPFeatureExtractor"
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
],
|
8 |
+
"requires_safety_checker": true,
|
9 |
+
"safety_checker": [
|
10 |
+
"stable_diffusion",
|
11 |
+
"StableDiffusionSafetyChecker"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
],
|
13 |
+
"scheduler": [
|
14 |
+
"diffusers",
|
15 |
+
"PNDMScheduler"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
],
|
17 |
+
"text_encoder": [
|
18 |
+
"transformers",
|
19 |
+
"CLIPTextModel"
|
20 |
+
],
|
21 |
+
"tokenizer": [
|
22 |
+
"transformers",
|
23 |
+
"CLIPTokenizer"
|
24 |
+
],
|
25 |
+
"unet": [
|
26 |
+
"diffusers",
|
27 |
+
"UNet2DConditionModel"
|
28 |
+
],
|
29 |
+
"vae": [
|
30 |
+
"diffusers",
|
31 |
+
"AutoencoderKL"
|
32 |
+
]
|
33 |
+
}
|