File size: 1,235 Bytes
749b94d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
license: mit
tags:
- gaussian-splatting
- 3dgs
- super-resolution
- anchorsplat
- eccv-2026
---

# AnchorSplat Checkpoints

Pretrained checkpoints for **AnchorSplat: Fast and Structure Consistent Detail Synthesis for Gaussian Splatting** (ECCV 2026).

| Variant | File | Output | Setting | SHA256 |
| --- | --- | --- | --- | --- |
| 20x | `anchorsplat_20x.pth` | 20 Gaussians per input anchor | default | `ad05f8b965c002c1f62cea53e4ce10ed4804bbc433375afa5f411f236d1b79a3` |
| 1x | `anchorsplat_1x.pth` | 1 Gaussian per input anchor | `FeaturePredictor.point_multiply_factor=1` | `85899b43ca8954fa470398232076aa18c9e32812fb1e097e0e28ccb37247e7b0` |

## Download

```bash
huggingface-cli download de233/AnchorSplat anchorsplat_20x.pth --local-dir checkpoints
huggingface-cli download de233/AnchorSplat anchorsplat_1x.pth --local-dir checkpoints
```

## Inference

```bash
# 20x
WEIGHTS=checkpoints/anchorsplat_20x.pth \
bash scripts/inference_external.sh examples/lgm_sample.ply outputs/lgm_sample_refined.ply lgm

# 1x
POINT_MULTIPLY_FACTOR=1 WEIGHTS=checkpoints/anchorsplat_1x.pth \
bash scripts/inference_external.sh examples/lgm_sample.ply outputs/lgm_sample_refined_1x.ply lgm
```

Code: https://github.com/zhude233/AnchorSplat