SteEsp commited on
Commit
b55ef75
·
verified ·
1 Parent(s): 37722db

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +12 -6
README.md CHANGED
@@ -53,25 +53,31 @@ This repository includes pretrained weights for:
53
  - Learn2SplatSparse: sparse-view reconstruction
54
  - Learn2SplatDense: dense-view reconstruction
55
 
56
- See MODEL_ZOO.md for details.
57
 
58
  ------------------------------------------------------------------------
59
 
60
  ## 🚀 Usage
61
 
 
62
  from transformers import AutoModel
63
 
64
  model_id = "autonomousvision/learn2splat"
65
 
66
  model = AutoModel.from_pretrained(model_id, trust_remote_code=True)
67
  model.eval()
 
68
 
69
  ------------------------------------------------------------------------
70
 
71
  ## 📚 Citation
72
 
73
- @article{pearl2026learn2splat, title={Learn2Splat: Extending the Horizon
74
- of Learned 3DGS Optimization}, author={Pearl, Naama and Esposito,
75
- Stefano and Xu, Haofei and Peleg, Amit and Gschossmann, Patricia and
76
- Porzi, Lorenzo and Kontschieder, Peter and Pons-Moll, Gerard and Geiger,
77
- Andreas}, journal={arXiv preprint}, year={2026} }
 
 
 
 
 
53
  - Learn2SplatSparse: sparse-view reconstruction
54
  - Learn2SplatDense: dense-view reconstruction
55
 
56
+ See (https://huggingface.co/autonomousvision/learn2splat/blob/main/MODEL_ZOO.md)[MODEL_ZOO.md] for details.
57
 
58
  ------------------------------------------------------------------------
59
 
60
  ## 🚀 Usage
61
 
62
+ ```python
63
  from transformers import AutoModel
64
 
65
  model_id = "autonomousvision/learn2splat"
66
 
67
  model = AutoModel.from_pretrained(model_id, trust_remote_code=True)
68
  model.eval()
69
+ ```
70
 
71
  ------------------------------------------------------------------------
72
 
73
  ## 📚 Citation
74
 
75
+ ```bibtex
76
+ @article{
77
+ pearl2026learn2splat,
78
+ title={Learn2Splat: Extending the Horizon of Learned 3DGS Optimization},
79
+ author={Pearl, Naama and Esposito, Stefano and Xu, Haofei and Peleg, Amit and Gschossmann, Patricia and Porzi, Lorenzo and Kontschieder, Peter and Pons-Moll, Gerard and Geiger, Andreas},
80
+ journal={arXiv preprint},
81
+ year={2026}
82
+ }
83
+ ```