Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -13,4 +13,16 @@ MmCows also contains 20,000 isometric-view images from multiple camera views in
|
|
13 |
|
14 |
More details of the dataset and benchmarks are available at https://github.com/neis-lab/mmcows.
|
15 |
|
16 |
-
Brief overview video: https://www.youtube.com/watch?v=YBDvz-HoLWg
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
More details of the dataset and benchmarks are available at https://github.com/neis-lab/mmcows.
|
15 |
|
16 |
+
Brief overview video: https://www.youtube.com/watch?v=YBDvz-HoLWg
|
17 |
+
|
18 |
+
Download individual file using python:
|
19 |
+
```
|
20 |
+
from huggingface_hub import hf_hub_download
|
21 |
+
|
22 |
+
hf_hub_download(
|
23 |
+
repo_id="hienvuvg/mmcows",
|
24 |
+
repo_type="dataset",
|
25 |
+
local_dir="./Downloads",
|
26 |
+
filename="visual_data.zip"
|
27 |
+
)
|
28 |
+
```
|