Spaces:
Running
on
Zero
Running
on
Zero
Enable Safety Checker for SD15
#2
by
radames
- opened
app.py
CHANGED
@@ -45,8 +45,7 @@ if not path.exists(cache_path):
|
|
45 |
os.makedirs(cache_path, exist_ok=True)
|
46 |
|
47 |
controlnet = ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-scribble", torch_dtype=torch.float16, use_safetensors=True)
|
48 |
-
pipe = StableDiffusionControlNetPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", controlnet=controlnet, torch_dtype=torch.float16,
|
49 |
-
variant="fp16")
|
50 |
pipe.load_lora_weights("ByteDance/Hyper-SD", weight_name="Hyper-SD15-1step-lora.safetensors", adapter_name="default")
|
51 |
pipe.to("cuda")
|
52 |
pipe.scheduler = TCDScheduler.from_config(pipe.scheduler.config, timestep_spacing ="trailing")
|
|
|
45 |
os.makedirs(cache_path, exist_ok=True)
|
46 |
|
47 |
controlnet = ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-scribble", torch_dtype=torch.float16, use_safetensors=True)
|
48 |
+
pipe = StableDiffusionControlNetPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", controlnet=controlnet, torch_dtype=torch.float16, variant="fp16")
|
|
|
49 |
pipe.load_lora_weights("ByteDance/Hyper-SD", weight_name="Hyper-SD15-1step-lora.safetensors", adapter_name="default")
|
50 |
pipe.to("cuda")
|
51 |
pipe.scheduler = TCDScheduler.from_config(pipe.scheduler.config, timestep_spacing ="trailing")
|