diagonalge commited on
Commit
bd71432
·
verified ·
1 Parent(s): 7229838

Upload sdxl-template.json

Browse files
Files changed (1) hide show
  1. sdxl-template.json +126 -0
sdxl-template.json ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "11": {
3
+ "inputs": {
4
+ "samples": [
5
+ "Sampler",
6
+ 0
7
+ ],
8
+ "vae": [
9
+ "Checkpoint_loader",
10
+ 2
11
+ ]
12
+ },
13
+ "class_type": "VAEDecode",
14
+ "_meta": {
15
+ "title": "VAE Decode"
16
+ }
17
+ },
18
+ "32": {
19
+ "inputs": {
20
+ "text": "",
21
+ "clip": [
22
+ "Lora_loader",
23
+ 1
24
+ ]
25
+ },
26
+ "class_type": "CLIPTextEncode",
27
+ "_meta": {
28
+ "title": "CLIP Text Encode (Prompt)"
29
+ }
30
+ },
31
+ "36": {
32
+ "inputs": {
33
+ "filename_prefix": "11",
34
+ "images": [
35
+ "11",
36
+ 0
37
+ ]
38
+ },
39
+ "class_type": "SaveImage",
40
+ "_meta": {
41
+ "title": "Save Image"
42
+ }
43
+ },
44
+ "37": {
45
+ "inputs": {
46
+ "width": 1024,
47
+ "height": 1024,
48
+ "batch_size": 1
49
+ },
50
+ "class_type": "EmptyLatentImage",
51
+ "_meta": {
52
+ "title": "Empty Latent Image"
53
+ }
54
+ },
55
+ "Checkpoint_loader": {
56
+ "inputs": {
57
+ "ckpt_name": "dreamshaper.safetensors"
58
+ },
59
+ "class_type": "CheckpointLoaderSimple",
60
+ "_meta": {
61
+ "title": "Load Checkpoint"
62
+ }
63
+ },
64
+ "Lora_loader": {
65
+ "inputs": {
66
+ "lora_name": "pixelart1st.safetensors",
67
+ "strength_model": 1,
68
+ "strength_clip": 1,
69
+ "model": [
70
+ "Checkpoint_loader",
71
+ 0
72
+ ],
73
+ "clip": [
74
+ "Checkpoint_loader",
75
+ 1
76
+ ]
77
+ },
78
+ "class_type": "LoraLoader",
79
+ "_meta": {
80
+ "title": "Load LoRA"
81
+ }
82
+ },
83
+ "Prompt": {
84
+ "inputs": {
85
+ "text": "8-bit pixel art style a hamburger-shaped building",
86
+ "clip": [
87
+ "Lora_loader",
88
+ 1
89
+ ]
90
+ },
91
+ "class_type": "CLIPTextEncode",
92
+ "_meta": {
93
+ "title": "CLIP Text Encode (Prompt)"
94
+ }
95
+ },
96
+ "Sampler": {
97
+ "inputs": {
98
+ "seed": 914251226970669,
99
+ "steps": 10,
100
+ "cfg": 3,
101
+ "sampler_name": "dpmpp_sde_gpu",
102
+ "scheduler": "karras",
103
+ "denoise": 1,
104
+ "model": [
105
+ "Lora_loader",
106
+ 0
107
+ ],
108
+ "positive": [
109
+ "Prompt",
110
+ 0
111
+ ],
112
+ "negative": [
113
+ "32",
114
+ 0
115
+ ],
116
+ "latent_image": [
117
+ "37",
118
+ 0
119
+ ]
120
+ },
121
+ "class_type": "KSampler",
122
+ "_meta": {
123
+ "title": "KSampler"
124
+ }
125
+ }
126
+ }