|
34 | 34 |
|
35 | 35 |
|
36 | 36 | RESOLUTION_MAPPING = { |
37 | | - "runwayml/stable-diffusion-v1-5": (512, 512), |
| 37 | + "Lykon/DreamShaper": (512, 512), |
38 | 38 | "lllyasviel/sd-controlnet-canny": (512, 512), |
39 | 39 | "diffusers/controlnet-canny-sdxl-1.0": (1024, 1024), |
40 | 40 | "TencentARC/t2iadapter_canny_sd14v1": (512, 512), |
@@ -268,7 +268,7 @@ def run_inference(self, pipe, args): |
268 | 268 | class ControlNetBenchmark(TextToImageBenchmark): |
269 | 269 | pipeline_class = StableDiffusionControlNetPipeline |
270 | 270 | aux_network_class = ControlNetModel |
271 | | - root_ckpt = "runwayml/stable-diffusion-v1-5" |
| 271 | + root_ckpt = "Lykon/DreamShaper" |
272 | 272 |
|
273 | 273 | url = "https://huggingface.co/datasets/diffusers/docs-images/resolve/main/benchmarking/canny_image_condition.png" |
274 | 274 | image = load_image(url).convert("RGB") |
@@ -311,7 +311,7 @@ def __init__(self, args): |
311 | 311 | class T2IAdapterBenchmark(ControlNetBenchmark): |
312 | 312 | pipeline_class = StableDiffusionAdapterPipeline |
313 | 313 | aux_network_class = T2IAdapter |
314 | | - root_ckpt = "CompVis/stable-diffusion-v1-4" |
| 314 | + root_ckpt = "Lykon/DreamShaper" |
315 | 315 |
|
316 | 316 | url = "https://huggingface.co/datasets/diffusers/docs-images/resolve/main/benchmarking/canny_for_adapter.png" |
317 | 317 | image = load_image(url).convert("L") |
|
0 commit comments