hienvuvg commited on
Commit
78f69de
·
verified ·
1 Parent(s): 960c609

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -5
README.md CHANGED
@@ -17,28 +17,38 @@ Brief overview video: https://www.youtube.com/watch?v=YBDvz-HoLWg
17
 
18
  <br />
19
 
20
- # Instructions for downloading individual files
21
-
22
  ## 1. Install requirements
23
  ```bash
24
  pip install huggingface_hub
25
  ```
26
 
27
- ## 2. Download options
28
 
29
  Using command line:
30
  ```bash
31
- huggingface-cli download hienvuvg/mmcows visual_data.zip --repo-type dataset --local-dir ./
 
 
 
 
32
  ```
33
 
34
  Using a Python script:
35
  ```python
36
  from huggingface_hub import hf_hub_download
37
-
38
  hf_hub_download(
39
  repo_id="hienvuvg/mmcows",
40
  repo_type="dataset",
41
  local_dir="./",
42
  filename="visual_data.zip"
43
  )
 
 
 
 
 
 
 
 
 
44
  ```
 
17
 
18
  <br />
19
 
 
 
20
  ## 1. Install requirements
21
  ```bash
22
  pip install huggingface_hub
23
  ```
24
 
25
+ ## 2. Options for downloading individual files
26
 
27
  Using command line:
28
  ```bash
29
+ huggingface-cli download \
30
+ hienvuvg/mmcows \
31
+ visual_data.zip \
32
+ --repo-type dataset \
33
+ --local-dir ./
34
  ```
35
 
36
  Using a Python script:
37
  ```python
38
  from huggingface_hub import hf_hub_download
 
39
  hf_hub_download(
40
  repo_id="hienvuvg/mmcows",
41
  repo_type="dataset",
42
  local_dir="./",
43
  filename="visual_data.zip"
44
  )
45
+ ```
46
+
47
+ ## 3. Download all files inside a folder
48
+ ```bash
49
+ huggingface-cli download \
50
+ hienvuvg/mmcows \
51
+ --repo-type dataset \
52
+ --include "uwb_synced_images/*" \
53
+ --local-dir ./
54
  ```