Datasets:
ccvl
/

DOI:
License:
wufeim commited on
Commit
a5bbe3c
·
verified ·
1 Parent(s): 7343ea4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -8
README.md CHANGED
@@ -4,20 +4,18 @@ extra_gated_fields:
4
  Name: text
5
  Affiliation: text
6
  ---
7
- ## ImageNet3D (version 04/09)
8
 
9
- Helper code: [github.com/wufeim/imagenet3d](https://github.com/wufeim/imagenet3d)
10
 
11
  ### Download Data
12
 
 
 
13
  ```py
14
  from huggingface_hub import hf_hub_download
15
- hf_hub_download(
16
- repo_id='ccvl/imagenet3d-0409',
17
- repo_type='dataset',
18
- filename='imagenet3d_0409.zip',
19
- local_dir='/path/to/imagenet3d_0409.zip',
20
- local_dir_use_symlinks=False)
21
  ```
22
 
23
  ### Example Usage
 
4
  Name: text
5
  Affiliation: text
6
  ---
7
+ ## ImageNet3D
8
 
9
+ Refer to [github.com/wufeim/imagenet3d](https://github.com/wufeim/imagenet3d) for the full documentation and sample preprocessing code for ImageNet3D.
10
 
11
  ### Download Data
12
 
13
+ Directly download from the HuggingFace WebUI, or on a server, run
14
+
15
  ```py
16
  from huggingface_hub import hf_hub_download
17
+ local_path = '/your/local/directory'
18
+ hf_hub_download(repo_id='ccvl/ImageNet3D', repo_type='dataset', filename='imagenet3d_0409.zip', local_dir=local_path, local_dir_use_symlinks=False)
 
 
 
 
19
  ```
20
 
21
  ### Example Usage