| 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 | |