nielsr HF Staff commited on
Commit
b10a6e9
·
verified ·
1 Parent(s): 12dde5c

Improve model card: Add metadata, links, and updated citation

Browse files

This PR significantly enhances the model card for GeoSVR by:
- Adding the `pipeline_tag: image-to-3d` for improved discoverability and categorization.
- Specifying the `license: apache-2.0`.
- Updating the main title to match the paper title.
- Providing direct links to the Hugging Face paper page ([GeoSVR: Taming Sparse Voxels for Geometrically Accurate Surface Reconstruction](https://huggingface.co/papers/2509.18090)), the official project page ([https://fictionarry.github.io/GeoSVR-project/](https://fictionarry.github.io/GeoSVR-project/)), and the GitHub repository ([https://github.com/Fictionarry/GeoSVR](https://github.com/Fictionarry/GeoSVR)).
- Updating the BibTeX citation to reflect the NeurIPS 2025 acceptance.

Please review these additions and merge if they look good.

Files changed (1) hide show
  1. README.md +18 -8
README.md CHANGED
@@ -1,17 +1,27 @@
1
  ---
2
- {}
 
3
  ---
4
- # Reconstruction on Tanks and Temples and DTU Datasets
 
 
 
 
 
 
 
 
 
5
 
6
  Here we provide the reconstructed meshes of the paper's experiments from GeoSVR.
7
 
8
  You can browse all the released meshes at:
9
 
10
- - `meshes_complete/`: The complete meshes of the two datasets.
11
 
12
- - `DTU_meshes_eval/`: The meshes on DTU datasets, with strict filtering strategy for evaluation.
13
 
14
- - `TnT_meshes_eval/`: The meshes on TnT datasets, with strict filtering strategy for evaluation.
15
 
16
  Metrics shall be reproduced with the results with postfix of `_eval`.
17
 
@@ -23,12 +33,12 @@ snapshot_download(repo_id="Fictionary/GeoSVR", cache_dir='./GeoSVR/results', loc
23
  ```
24
  or use Git to clone this repository with LFS.
25
 
26
- ## BibTex
27
- ```
28
  @article{li2025geosvr,
29
  title={GeoSVR: Taming Sparse Voxels for Geometrically Accurate Surface Reconstruction},
30
  author={Li, Jiahe and Zhang, Jiawei and Zhang, Youmin and Bai, Xiao and Zheng, Jin and Yu, Xiaohan and Gu, Lin},
31
- journal={arXiv preprint arXiv:2509.18090},
32
  year={2025}
33
  }
34
  ```
 
1
  ---
2
+ pipeline_tag: image-to-3d
3
+ license: apache-2.0
4
  ---
5
+
6
+ # GeoSVR: Taming Sparse Voxels for Geometrically Accurate Surface Reconstruction
7
+
8
+ This repository provides the reconstructed meshes and resources for the paper [GeoSVR: Taming Sparse Voxels for Geometrically Accurate Surface Reconstruction](https://huggingface.co/papers/2509.18090), which presents an explicit voxel-based framework for accurate, detailed, and complete surface reconstruction.
9
+
10
+ * [\ud83d\udcda Paper](https://huggingface.co/papers/2509.18090)
11
+ * [\ud83c\udf10 Project Page](https://fictionarry.github.io/GeoSVR-project/)
12
+ * [\ud83d\udcbb Code](https://github.com/Fictionarry/GeoSVR)
13
+
14
+ ## Reconstruction on Tanks and Temples and DTU Datasets
15
 
16
  Here we provide the reconstructed meshes of the paper's experiments from GeoSVR.
17
 
18
  You can browse all the released meshes at:
19
 
20
+ - `meshes_complete/`: The complete meshes of the two datasets.
21
 
22
+ - `DTU_meshes_eval/`: The meshes on DTU datasets, with strict filtering strategy for evaluation.
23
 
24
+ - `TnT_meshes_eval/`: The meshes on TnT datasets, with strict filtering strategy for evaluation.
25
 
26
  Metrics shall be reproduced with the results with postfix of `_eval`.
27
 
 
33
  ```
34
  or use Git to clone this repository with LFS.
35
 
36
+ ## Citation
37
+ ```bibtex
38
  @article{li2025geosvr,
39
  title={GeoSVR: Taming Sparse Voxels for Geometrically Accurate Surface Reconstruction},
40
  author={Li, Jiahe and Zhang, Jiawei and Zhang, Youmin and Bai, Xiao and Zheng, Jin and Yu, Xiaohan and Gu, Lin},
41
+ journal={Advances in Neural Information Processing Systems},
42
  year={2025}
43
  }
44
  ```