colt12 commited on
Commit
a1add26
·
verified ·
1 Parent(s): 3ad9442

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +43 -12
config.json CHANGED
@@ -1,15 +1,46 @@
1
  {
2
- "architectures": ["UNet2DConditionModel"],
3
- "_class_name": "StableDiffusionPipeline",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  "_diffusers_version": "0.21.4",
5
- "feature_extractor": [
6
- "CLIPFeatureExtractor",
7
- "openai/clip-vit-base-patch32"
8
- ],
9
- "safety_checker": null,
10
- "scheduler": ["PNDMScheduler"],
11
- "text_encoder": ["CLIPTextModel", "openai/clip-vit-base-patch32"],
12
- "tokenizer": ["CLIPTokenizer", "openai/clip-vit-base-patch32"],
13
- "unet": ["UNet2DConditionModel"],
14
- "vae": ["AutoencoderKL"]
15
  }
 
1
  {
2
+ "_class_name": "StableDiffusionXLPipeline",
3
+ "architectures": [
4
+ "StableDiffusionXLPipeline"
5
+ ],
6
+ "scheduler": [
7
+ "DPMSolverMultistepScheduler"
8
+ ],
9
+ "text_encoder": [
10
+ "CLIPTextModel"
11
+ ],
12
+ "text_encoder_2": [
13
+ "CLIPTextModelWithProjection"
14
+ ],
15
+ "tokenizer": [
16
+ "CLIPTokenizer"
17
+ ],
18
+ "tokenizer_2": [
19
+ "CLIPTokenizer"
20
+ ],
21
+ "unet": [
22
+ "UNet2DConditionModel"
23
+ ],
24
+ "vae": [
25
+ "AutoencoderKL"
26
+ ],
27
+ "force_zeros_for_empty_prompt": true,
28
+ "add_watermarker": false,
29
+ "caption_dropout_probability": 0,
30
+ "clip_skip": null,
31
+ "requires_safety_checker": false,
32
+ "force_zeros_for_empty_prompt": true,
33
+ "requires_aesthetics_score": false,
34
+ "do_classifier_free_guidance": true,
35
+ "num_attention_heads": 16,
36
+ "num_hidden_layers": 32,
37
+ "projection_dim": 1280,
38
+ "text_encoder_2_projection_dim": 1280,
39
+ "cross_attention_dim": 2048,
40
+ "sample_size": 128,
41
+ "use_linear_projection": true,
42
+ "upcast_attention": false,
43
+ "model_type": "SDXL",
44
  "_diffusers_version": "0.21.4",
45
+ "transformer_layers_per_block": 2
 
 
 
 
 
 
 
 
 
46
  }