RamAnanth1 commited on
Commit
32a888f
1 Parent(s): 15a3d8e

Update annotator/openpose/__init__.py

Browse files
Files changed (1) hide show
  1. annotator/openpose/__init__.py +0 -1
annotator/openpose/__init__.py CHANGED
@@ -9,7 +9,6 @@ from .hand import Hand
9
 
10
  from huggingface_hub import hf_hub_url, hf_hub_download
11
  REPO_ID = "lllyasviel/ControlNet"
12
- hf_hub_download(hf_hub_url(REPO_ID, FILENAME))
13
  body_estimation = Body(hf_hub_download(hf_hub_url(REPO_ID, '/annotator/ckpts/body_pose_model.pth')))
14
  hand_estimation = Hand(hf_hub_download(hf_hub_url(REPO_ID,'/annotator/ckpts/hand_pose_model.pth')))
15
 
 
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