RamAnanth1 commited on
Commit
5f7ee3e
1 Parent(s): 32a888f

Update annotator/openpose/__init__.py

Browse files
Files changed (1) hide show
  1. annotator/openpose/__init__.py +3 -3
annotator/openpose/__init__.py CHANGED
@@ -7,10 +7,10 @@ from . import util
7
  from .body import Body
8
  from .hand import Hand
9
 
10
- from huggingface_hub import hf_hub_url, hf_hub_download
11
  REPO_ID = "lllyasviel/ControlNet"
12
- body_estimation = Body(hf_hub_download(hf_hub_url(REPO_ID, '/annotator/ckpts/body_pose_model.pth')))
13
- hand_estimation = Hand(hf_hub_download(hf_hub_url(REPO_ID,'/annotator/ckpts/hand_pose_model.pth')))
14
 
15
 
16
  def apply_openpose(oriImg, hand=False):
 
7
  from .body import Body
8
  from .hand import Hand
9
 
10
+ from huggingface_hub import hf_hub_url, cached_download
11
  REPO_ID = "lllyasviel/ControlNet"
12
+ body_estimation = Body(cached_download(hf_hub_url(REPO_ID, 'annotator/ckpts/body_pose_model.pth')))
13
+ hand_estimation = Hand(cached_download(hf_hub_url(REPO_ID,'annotator/ckpts/hand_pose_model.pth')))
14
 
15
 
16
  def apply_openpose(oriImg, hand=False):