deruyter92 commited on
Commit
c3cf025
·
verified ·
1 Parent(s): bef3606

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -58,9 +58,9 @@ For the full API reference, see the [GitHub repository](https://github.com/Adapt
58
  ```python
59
  from huggingface_hub import hf_hub_download
60
 
61
- path = hf_hub_download(repo_id="<org>/<repo>", filename="fmpose3d_humans.pth")
62
  # or
63
- path = hf_hub_download(repo_id="<org>/<repo>", filename="fmpose3d_animals.pth")
64
 
65
  api = FMPose3DInference(model_weights_path=path)
66
  ```
 
58
  ```python
59
  from huggingface_hub import hf_hub_download
60
 
61
+ path = hf_hub_download(repo_id="DeepLabCut/FMPose3D", filename="fmpose3d_humans.pth")
62
  # or
63
+ path = hf_hub_download(repo_id="DeepLabCut/FMPose3D", filename="fmpose3d_animals.pth")
64
 
65
  api = FMPose3DInference(model_weights_path=path)
66
  ```