de233 commited on
Commit
00ceb75
·
verified ·
1 Parent(s): e375c5b

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ tags:
4
+ - anchorsplat
5
+ - gaussian-splatting
6
+ - 3dgs
7
+ - mvimgnet
8
+ - eccv-2026
9
+ pretty_name: AnchorSplat Processed Third-Party Data
10
+ ---
11
+
12
+ # AnchorSplat Processed Third-Party Data
13
+
14
+ Processed third-party MVImgNet data used by **AnchorSplat** for evaluation and comparison settings.
15
+
16
+ The data is arranged in the Splatfacto/AnchorSplat loader layout. Extract each archive into the `data/` directory of the AnchorSplat repository.
17
+
18
+ ## Files
19
+
20
+ | Archive | Scenes | AnchorSplat config | Description |
21
+ | --- | ---: | --- | --- |
22
+ | `mvimgnet_splatformer_ready.tar.zst` | 15 | `configs/dataset/mvimgnet.gin` | MVImgNet processed with low-resolution 3DGS input |
23
+ | `mvimgnet_sginput_splatformer_ready.tar.zst` | 15 | `configs/dataset/mvimgnet_sginput.gin` | MVImgNet processed with SuperGaussian input |
24
+ | `mvimgnet_sg4x_splatformer_ready.tar.zst` | 15 | `configs/dataset/mvimgnet_sg4x.gin` | MVImgNet processed with SuperGaussian 4x input |
25
+
26
+ `DATA_MANIFEST.json` contains scene names and required-file checks. `SHA256SUMS.txt` contains archive hashes.
27
+
28
+ ## Download
29
+
30
+ ```bash
31
+ huggingface-cli download de233/AnchorSplat-Processed-Third-Party-Data --include "*.tar.zst" --include "DATA_MANIFEST.json" --include "SHA256SUMS.txt" --local-dir data/processed_third_party_archives
32
+ ```
33
+
34
+ ## Extract
35
+
36
+ ```bash
37
+ mkdir -p data
38
+ for f in data/processed_third_party_archives/*.tar.zst; do
39
+ tar --zstd -xf "$f" -C data
40
+ done
41
+ ```
42
+
43
+ After extraction, the paths should look like:
44
+
45
+ ```text
46
+ data/mvimgnet_splatformer_ready/<scene>/256/gaussian_splatting/ckpts/ckpt_14999_rank0.pt
47
+ data/mvimgnet_splatformer_ready/<scene>/256/sparse/0/{cameras.bin,images.bin,points3D.bin}
48
+ data/mvimgnet_splatformer_ready/<scene>/1024/images/*.png
49
+ data/mvimgnet_splatformer_ready/<scene>/1024/{cameras.txt,images.txt}
50
+ ```
51
+
52
+ ## Evaluation
53
+
54
+ ```bash
55
+ DATA_CONFIG=configs/dataset/mvimgnet.gin CHECKPOINT=checkpoints/anchorsplat_20x.pth GPUS=0 NPROC=1 bash scripts/evaluate_anchorsplat.sh
56
+ ```
57
+
58
+ Replace `DATA_CONFIG` with `configs/dataset/mvimgnet_sginput.gin` or `configs/dataset/mvimgnet_sg4x.gin` for the corresponding processed data.
59
+
60
+ ## License
61
+
62
+ This release contains processed data derived from third-party datasets. The original dataset licenses and terms remain applicable. Use this release for academic research and follow the terms of the original sources.
63
+
64
+ Code: https://github.com/zhude233/AnchorSplat