Add AnchorSplat model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- gaussian-splatting
|
| 5 |
+
- 3dgs
|
| 6 |
+
- super-resolution
|
| 7 |
+
- anchorsplat
|
| 8 |
+
- eccv-2026
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# AnchorSplat Checkpoints
|
| 12 |
+
|
| 13 |
+
Pretrained checkpoints for **AnchorSplat: Fast and Structure Consistent Detail Synthesis for Gaussian Splatting** (ECCV 2026).
|
| 14 |
+
|
| 15 |
+
| Variant | File | Output | Setting | SHA256 |
|
| 16 |
+
| --- | --- | --- | --- | --- |
|
| 17 |
+
| 20x | `anchorsplat_20x.pth` | 20 Gaussians per input anchor | default | `ad05f8b965c002c1f62cea53e4ce10ed4804bbc433375afa5f411f236d1b79a3` |
|
| 18 |
+
| 1x | `anchorsplat_1x.pth` | 1 Gaussian per input anchor | `FeaturePredictor.point_multiply_factor=1` | `85899b43ca8954fa470398232076aa18c9e32812fb1e097e0e28ccb37247e7b0` |
|
| 19 |
+
|
| 20 |
+
## Download
|
| 21 |
+
|
| 22 |
+
```bash
|
| 23 |
+
huggingface-cli download de233/AnchorSplat anchorsplat_20x.pth --local-dir checkpoints
|
| 24 |
+
huggingface-cli download de233/AnchorSplat anchorsplat_1x.pth --local-dir checkpoints
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## Inference
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
# 20x
|
| 31 |
+
WEIGHTS=checkpoints/anchorsplat_20x.pth \
|
| 32 |
+
bash scripts/inference_external.sh examples/lgm_sample.ply outputs/lgm_sample_refined.ply lgm
|
| 33 |
+
|
| 34 |
+
# 1x
|
| 35 |
+
POINT_MULTIPLY_FACTOR=1 WEIGHTS=checkpoints/anchorsplat_1x.pth \
|
| 36 |
+
bash scripts/inference_external.sh examples/lgm_sample.ply outputs/lgm_sample_refined_1x.ply lgm
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
Code: https://github.com/zhude233/AnchorSplat
|