devingulliver commited on
Commit
4a1ffbf
·
verified ·
1 Parent(s): daead1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -12,25 +12,25 @@ theme = gr.themes.Base(
12
 
13
  device="cuda"
14
  pipe_xlc = AutoPipelineForText2Image.from_pretrained(
15
- "temp-org-cc/CommonCanvas-XLC",
16
  custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance",
17
  torch_dtype=torch.float16
18
  ).to(device)
19
 
20
  pipe_xlnc = AutoPipelineForText2Image.from_pretrained(
21
- "temp-org-cc/CommonCanvas-XLNC",
22
  custom_pipeline="multimodalart/sdxl_perturbed_attention_guidance",
23
  torch_dtype=torch.float16
24
  ).to(device)
25
 
26
  pipe_sc = AutoPipelineForText2Image.from_pretrained(
27
- "temp-org-cc/CommonCanvas-SC",
28
  custom_pipeline="hyoungwoncho/sd_perturbed_attention_guidance",
29
  torch_dtype=torch.float16
30
  ).to(device)
31
 
32
  pipe_snc = AutoPipelineForText2Image.from_pretrained(
33
- "temp-org-cc/CommonCanvas-SNC",
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)