Add model card and metadata
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
--
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: image-to-3d
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# AdaptSplat: Adapting Vision Foundation Models for Feed-Forward 3D Gaussian Splatting
|
| 7 |
+
|
| 8 |
+
[**Paper**](https://huggingface.co/papers/2605.10239) | [**Code**](https://github.com/xmw666/AdaptSplat)
|
| 9 |
+
|
| 10 |
+
AdaptSplat is a lightweight adapter design for feed-forward 3D Gaussian Splatting (3DGS). It introduces a single Frequency-Preserving Adapter (FPA) of only 1.5M parameters into a generic architecture to achieve superior performance in cross-domain generalization and high-frequency geometric fidelity. By extracting direction-aware high-frequency structural priors from a vision foundation model backbone (DINOv3-distilled ConvNeXt), it effectively compensates for high-frequency attenuation caused by over-smoothing in deep features.
|
| 11 |
+
|
| 12 |
+
## Inference
|
| 13 |
+
|
| 14 |
+
To run inference, please refer to the environment setup in the [official repository](https://github.com/xmw666/AdaptSplat). Once the environment and weights are prepared, you can run inference using the following commands:
|
| 15 |
+
|
| 16 |
+
### Single-GPU Inference
|
| 17 |
+
```bash
|
| 18 |
+
CUDA_VISIBLE_DEVICES=0 python inference.py --config configs/inference.yaml
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
+
### Multi-GPU (DDP) Inference
|
| 22 |
+
```bash
|
| 23 |
+
torchrun --nproc_per_node=8 inference_ddp.py --config configs/inference.yaml
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
## Citation
|
| 27 |
+
|
| 28 |
+
If you find this work useful, please cite:
|
| 29 |
+
|
| 30 |
+
```bibtex
|
| 31 |
+
@article{adaptsplat2026,
|
| 32 |
+
title={AdaptSplat: Adapting Vision Foundation Models for Feed-Forward 3D Gaussian Splatting},
|
| 33 |
+
author={Mingwei Xing, Xinliang Wang, Yifeng Shi},
|
| 34 |
+
journal={arXiv preprint arXiv:2605.10239},
|
| 35 |
+
year={2026}
|
| 36 |
+
}
|
| 37 |
+
```
|