Update README.md
Browse files
README.md
CHANGED
@@ -293,6 +293,25 @@ ViCA-7B supports a broad range of spatially grounded multimodal applications:
|
|
293 |
- No depth/point cloud: Only RGB video input supported
|
294 |
- Zero-shot generalization is good, but not task-agnostic
|
295 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
## Inference
|
297 |
|
298 |
*Here is a runnable example using ViCA-7B on a VSI-Bench question.*
|
|
|
293 |
- No depth/point cloud: Only RGB video input supported
|
294 |
- Zero-shot generalization is good, but not task-agnostic
|
295 |
|
296 |
+
## Download
|
297 |
+
|
298 |
+
You can download the model weights to your local environment (optional).
|
299 |
+
|
300 |
+
```python
|
301 |
+
from huggingface_hub import snapshot_download
|
302 |
+
|
303 |
+
save_dir = "./ViCA"
|
304 |
+
repo_id = "nkkbr/ViCA"
|
305 |
+
cache_dir = save_dir + "/cache"
|
306 |
+
|
307 |
+
snapshot_download(cache_dir=cache_dir,
|
308 |
+
local_dir=save_dir,
|
309 |
+
repo_id=repo_id,
|
310 |
+
local_dir_use_symlinks=False,
|
311 |
+
resume_download=True,
|
312 |
+
)
|
313 |
+
```
|
314 |
+
|
315 |
## Inference
|
316 |
|
317 |
*Here is a runnable example using ViCA-7B on a VSI-Bench question.*
|