| --- |
| license: mit |
| tags: |
| - spatial-temporal-memory |
| - video-understanding |
| - object-tracking |
| - depth-estimation |
| --- |
| |
| # Spatial-Temporal Memory System - Model Weights |
|
|
| This repository contains pre-trained model weights for the [Spatial-Temporal Memory System](https://github.com/Sealical/spatial-temporal-memory). |
|
|
| ## Directory Structure |
|
|
| ``` |
| weights/ |
| βββ Depth-Anything-V2/ # Depth-Anything-V2 checkpoints |
| βββ DUSt3R/ # DUSt3R pose / reconstruction checkpoints |
| βββ Fast-ReID/ # Re-identification checkpoints |
| βββ GroundingDINO/ # Open-vocabulary detection checkpoints |
| βββ Metric3D/ # Metric depth checkpoints |
| βββ Qwen3-Embedding-8B/ # Large text embedding model |
| βββ RAFT/ # Optical flow checkpoints |
| βββ SAM2/ # SAM2 segmentation checkpoints |
| βββ checkpoints/ # ViPE / auxiliary checkpoints |
| βββ dinov2/ # DINOv2 local weights |
| βββ droid_slam/ # DROID-SLAM related weights |
| βββ geocalib/ # Geo calibration weights |
| βββ sam3/ # SAM3 local bundle |
| βββ osnet_x0_25_msmt17.pt # Lightweight ReID checkpoint |
| βββ yolov8n.pt # Lightweight YOLO checkpoint |
| ``` |
|
|
| ## Usage |
|
|
| Download weights using the provided script: |
|
|
| ```bash |
| bash scripts/download_weights_from_hf.sh |
| ``` |
|
|
| Or manually with huggingface-cli: |
|
|
| ```bash |
| huggingface-cli download sealical/spatial-temporal-mem-models --local-dir weights/ |
| ``` |
|
|
| ## Notes |
|
|
| - This mirror follows the project's current `weights/` layout. |
| - Some folders contain very large checkpoints and model bundles intended for local sync rather than GitHub storage. |
| - If you only need a smaller public subset, use `bash scripts/download_weights.sh`. |
|
|
| ## License |
|
|
| Model weights are subject to their original licenses. Please check individual model repositories for details. |
|
|