Update README.md
Browse files
README.md
CHANGED
@@ -4,20 +4,18 @@ extra_gated_fields:
|
|
4 |
Name: text
|
5 |
Affiliation: text
|
6 |
---
|
7 |
-
## ImageNet3D
|
8 |
|
9 |
-
|
10 |
|
11 |
### Download Data
|
12 |
|
|
|
|
|
13 |
```py
|
14 |
from huggingface_hub import hf_hub_download
|
15 |
-
|
16 |
-
|
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
|