Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
library_name: pytorch
|
| 4 |
+
tags:
|
| 5 |
+
- computer-vision
|
| 6 |
+
- 3d-gaussian-splatting
|
| 7 |
+
- gaussian-splatting
|
| 8 |
+
- super-resolution
|
| 9 |
+
- eccv-2026
|
| 10 |
+
- pytorch
|
| 11 |
+
pipeline_tag: image-to-3d
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# AnchorSplat 20x Checkpoint
|
| 15 |
+
|
| 16 |
+
This repository hosts the released 20x checkpoint for **AnchorSplat: Fast and Structure Consistent Detail Synthesis for Gaussian Splatting (ECCV 2026)**.
|
| 17 |
+
|
| 18 |
+
- Paper: https://arxiv.org/abs/2607.01290
|
| 19 |
+
- Code: https://github.com/zhude233/AnchorSplat
|
| 20 |
+
- Checkpoint: `anchorsplat_20x.pth`
|
| 21 |
+
- SHA256: `ad05f8b965c002c1f62cea53e4ce10ed4804bbc433375afa5f411f236d1b79a3`
|
| 22 |
+
|
| 23 |
+
## Usage
|
| 24 |
+
|
| 25 |
+
Download the checkpoint and place it at:
|
| 26 |
+
|
| 27 |
+
```text
|
| 28 |
+
checkpoints/anchorsplat_20x.pth
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
or pass it explicitly:
|
| 32 |
+
|
| 33 |
+
```bash
|
| 34 |
+
WEIGHTS=/path/to/anchorsplat_20x.pth \
|
| 35 |
+
bash scripts/inference_external.sh examples/lgm_sample.ply outputs/lgm_sample_refined.ply lgm
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Notes
|
| 39 |
+
|
| 40 |
+
AnchorSplat is designed for fast, generalizable, plug-and-play enhancement of low-quality 3D Gaussian Splatting assets. For external PLY inputs, please follow the input format and normalization instructions in the GitHub README.
|
| 41 |
+
|
| 42 |
+
## Citation
|
| 43 |
+
|
| 44 |
+
```bibtex
|
| 45 |
+
@article{zhu2026anchorsplat,
|
| 46 |
+
title={AnchorSplat: Fast and Structure Consistent Detail Synthesis for Gaussian Splatting},
|
| 47 |
+
author={Zhu, Dexu and Shao, Jiangnan and Wang, Xiaofeng and Duan, Junxian and Cao, Jie and Zhu, Zheng and Huang, Huaibo},
|
| 48 |
+
journal={arXiv preprint arXiv:2607.01290},
|
| 49 |
+
year={2026},
|
| 50 |
+
eprint={2607.01290},
|
| 51 |
+
archivePrefix={arXiv},
|
| 52 |
+
primaryClass={cs.CV},
|
| 53 |
+
doi={10.48550/arXiv.2607.01290},
|
| 54 |
+
url={https://arxiv.org/abs/2607.01290}
|
| 55 |
+
}
|
| 56 |
+
```
|