fffiloni commited on
Commit
2e78fa3
·
1 Parent(s): 0cbec0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -27,14 +27,15 @@ from models.RIFE.IFNet_HDv3 import IFNet
27
 
28
  device = "cuda"
29
 
30
- sd_path = hf_hub_download("runwayml/stable-diffusion-v1-5", cache_dir="checkpoints")
31
  inter_path = "checkpoints/flownet.pkl"
32
  controlnet_dict = {
33
- "pose": hf_hub_download("lllyasviel/sd-controlnet-pose", cache_dir="checkpoints") ,
34
- "depth": hf_hub_download("lllyasviel/sd-controlnet-depth", cache_dir="checkpoints"),
35
- "canny": hf_hub_download("lllyasviel/sd-controlnet-canny", cache_dir="checkpoints")
36
  }
37
 
 
38
  controlnet_parser_dict = {
39
  "pose": OpenposeDetector,
40
  "depth": MidasDetector,
 
27
 
28
  device = "cuda"
29
 
30
+ sd_path = "checkpoints/stable-diffusion-v1-5"
31
  inter_path = "checkpoints/flownet.pkl"
32
  controlnet_dict = {
33
+ "pose": "checkpoints/sd-controlnet-openpose",
34
+ "depth": "checkpoints/sd-controlnet-depth",
35
+ "canny": "checkpoints/sd-controlnet-canny",
36
  }
37
 
38
+
39
  controlnet_parser_dict = {
40
  "pose": OpenposeDetector,
41
  "depth": MidasDetector,