Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -12,25 +12,25 @@ theme = gr.themes.Base(
|
|
12 |
|
13 |
device="cuda"
|
14 |
pipe_xlc = AutoPipelineForText2Image.from_pretrained(
|
15 |
-
"
|
16 |
custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance",
|
17 |
torch_dtype=torch.float16
|
18 |
).to(device)
|
19 |
|
20 |
pipe_xlnc = AutoPipelineForText2Image.from_pretrained(
|
21 |
-
"
|
22 |
custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance",
|
23 |
torch_dtype=torch.float16
|
24 |
).to(device)
|
25 |
|
26 |
pipe_sc = AutoPipelineForText2Image.from_pretrained(
|
27 |
-
"
|
28 |
custom_pipeline="hyoungwoncho/sd_perturbed_attention_guidance",
|
29 |
torch_dtype=torch.float16
|
30 |
).to(device)
|
31 |
|
32 |
pipe_snc = AutoPipelineForText2Image.from_pretrained(
|
33 |
-
"
|
34 |
custom_pipeline="hyoungwoncho/sd_perturbed_attention_guidance",
|
35 |
torch_dtype=torch.float16
|
36 |
).to(device)
|
|
|
12 |
|
13 |
device="cuda"
|
14 |
pipe_xlc = AutoPipelineForText2Image.from_pretrained(
|
15 |
+
"common-canvas/CommonCanvas-XL-C",
|
16 |
custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance",
|
17 |
torch_dtype=torch.float16
|
18 |
).to(device)
|
19 |
|
20 |
pipe_xlnc = AutoPipelineForText2Image.from_pretrained(
|
21 |
+
"common-canvas/CommonCanvas-XL-NC",
|
22 |
custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance",
|
23 |
torch_dtype=torch.float16
|
24 |
).to(device)
|
25 |
|
26 |
pipe_sc = AutoPipelineForText2Image.from_pretrained(
|
27 |
+
"common-canvas/CommonCanvas-S-C",
|
28 |
custom_pipeline="hyoungwoncho/sd_perturbed_attention_guidance",
|
29 |
torch_dtype=torch.float16
|
30 |
).to(device)
|
31 |
|
32 |
pipe_snc = AutoPipelineForText2Image.from_pretrained(
|
33 |
+
"common-canvas/CommonCanvas-S-NC",
|
34 |
custom_pipeline="hyoungwoncho/sd_perturbed_attention_guidance",
|
35 |
torch_dtype=torch.float16
|
36 |
).to(device)
|