Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# 3D-IDE Training Data
|
| 6 |
+
|
| 7 |
+
Complete, verified training data for [3D-IDE](https://github.com/ChushanZhang/3D-IDE) (CVPR 2026). This is the exact data used in our experiments — byte-identical to our training server. Use `md5_manifest.txt` / `md5_manifest_scannet.txt` to verify your local copy without re-downloading.
|
| 8 |
+
|
| 9 |
+
> **ScanNet notice:** `scannet/` archives and parts of the metadata are derived from [ScanNet](http://www.scan-net.org/). By downloading them you agree to the ScanNet Terms of Use.
|
| 10 |
+
|
| 11 |
+
## Contents
|
| 12 |
+
|
| 13 |
+
| File | Size | Contents (archive-internal paths) | Extract into |
|
| 14 |
+
|---|---|---|---|
|
| 15 |
+
| `3dide_data.zip` | 4.3 GB | `processed/`, `metadata/`, `benchmark/`, `balanced/`, `embodiedscan/`, `multi.yaml` | `data/` |
|
| 16 |
+
| `scannet/scannet_posed_images_part1.zip` | ~25 GB | `posed_images/scene0000_00 … ` (first half) | `data/scannet/` |
|
| 17 |
+
| `scannet/scannet_posed_images_part2.zip` | ~25 GB | `posed_images/…` (second half) | `data/scannet/` |
|
| 18 |
+
| `scannet/scannet_mask_pcd.zip` | ~10 GB | `mask/`, `pcd_with_object_aabbs/` | `data/scannet/` |
|
| 19 |
+
| `vggt_features/vggt_features_part{1..9}.zip` | 9 × ~43 GB | `scene…/vggt_sliced.npy` (no wrapper dir!) | `data/scannet/posed_images_3d_feature_vggt/` |
|
| 20 |
+
| `md5_manifest.txt` | — | MD5 of every file in `3dide_data.zip` | — |
|
| 21 |
+
| `md5_manifest_scannet.txt` | — | MD5 of every raw file under `scannet/` | — |
|
| 22 |
+
|
| 23 |
+
The loose `processed/`, `metadata/`, `benchmark/`, `balanced/` folders in this repo mirror the contents of `3dide_data.zip` for convenient single-file access.
|
| 24 |
+
|
| 25 |
+
## Extraction
|
| 26 |
+
|
| 27 |
+
Run from the repo root of 3D-IDE:
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
cd 3D-IDE
|
| 31 |
+
|
| 32 |
+
# 1. main data
|
| 33 |
+
unzip 3dide_data.zip -d data/
|
| 34 |
+
|
| 35 |
+
# 2. scannet raw data
|
| 36 |
+
unzip scannet_posed_images_part1.zip -d data/scannet/
|
| 37 |
+
unzip scannet_posed_images_part2.zip -d data/scannet/
|
| 38 |
+
unzip scannet_mask_pcd.zip -d data/scannet/
|
| 39 |
+
|
| 40 |
+
# 3. VGGT features (note: archives contain scene dirs directly, no wrapper)
|
| 41 |
+
mkdir -p data/scannet/posed_images_3d_feature_vggt
|
| 42 |
+
for i in 1 2 3 4 5 6 7 8 9; do
|
| 43 |
+
unzip vggt_features_part$i.zip -d data/scannet/posed_images_3d_feature_vggt/
|
| 44 |
+
done
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
## Verify (instead of re-downloading)
|
| 48 |
+
|
| 49 |
+
If you already prepared data and want to check it matches ours exactly:
|
| 50 |
+
|
| 51 |
+
```bash
|
| 52 |
+
cd 3D-IDE/data
|
| 53 |
+
md5sum -c md5_manifest.txt # json / metadata / embodiedscan
|
| 54 |
+
md5sum -c md5_manifest_scannet.txt # posed_images / mask / pcd
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Any `FAILED` line points at a file that differs from our training copy.
|
| 58 |
+
|
| 59 |
+
## Not included (download separately)
|
| 60 |
+
|
| 61 |
+
| Item | Where |
|
| 62 |
+
|---|---|
|
| 63 |
+
| `data/models/LLaVA-Video-7B-Qwen2/` | [lmms-lab/LLaVA-Video-7B-Qwen2](https://huggingface.co/lmms-lab/LLaVA-Video-7B-Qwen2) |
|
| 64 |
+
| `VGGT_checkpoints/model.pt` | [facebook/VGGT-1B](https://huggingface.co/facebook/VGGT-1B/blob/main/model.pt) |
|
| 65 |
+
|
| 66 |
+
## Final layout
|
| 67 |
+
|
| 68 |
+
```
|
| 69 |
+
3D-IDE/
|
| 70 |
+
├── data/
|
| 71 |
+
│ ├── balanced/
|
| 72 |
+
│ ├── benchmark/
|
| 73 |
+
│ ├── embodiedscan/
|
| 74 |
+
│ ├── metadata/
|
| 75 |
+
│ ├── models/LLaVA-Video-7B-Qwen2/ # separate download
|
| 76 |
+
│ ├── processed/
|
| 77 |
+
│ ├── multi.yaml
|
| 78 |
+
│ └── scannet/
|
| 79 |
+
│ ├── mask/
|
| 80 |
+
│ ├── pcd_with_object_aabbs/
|
| 81 |
+
│ ├── posed_images/
|
| 82 |
+
│ └── posed_images_3d_feature_vggt/
|
| 83 |
+
└── VGGT_checkpoints/model.pt # separate download
|
| 84 |
+
```
|