cassieyangyj commited on
Commit
49191f3
·
1 Parent(s): 9308c70

download command update

Browse files
Files changed (1) hide show
  1. README.md +4 -8
README.md CHANGED
@@ -22,15 +22,11 @@ A benchmark for evaluating 3D point motion in video, covering egocentric and thi
22
 
23
  Benchmark data provided in this repository include annotations, captions, indices, and scripts created by Ai2 that correspond to the source datasets.
24
 
25
- ```python
26
  # pip install huggingface_hub
27
- # If the download stalls near completion: HF_HUB_DISABLE_XET=1 python your_script.py
28
- from huggingface_hub import snapshot_download
29
- snapshot_download(
30
- repo_id="allenai/PointMotionBench",
31
- repo_type="dataset",
32
- local_dir=".",
33
- )
34
  ```
35
 
36
  ---
 
22
 
23
  Benchmark data provided in this repository include annotations, captions, indices, and scripts created by Ai2 that correspond to the source datasets.
24
 
25
+ ```bash
26
  # pip install huggingface_hub
27
+ # If the download stalls near completion: HF_HUB_DISABLE_XET=1 huggingface-cli download ...
28
+ huggingface-cli download allenai/PointMotionBench \
29
+ --repo-type dataset --local-dir $POINTMOTIONBENCH_ROOT
 
 
 
 
30
  ```
31
 
32
  ---