mvp18 commited on
Commit
45865af
·
verified ·
1 Parent(s): 87c60ad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -3
README.md CHANGED
@@ -2,7 +2,50 @@
2
  license: openrail
3
  language:
4
  - en
 
 
 
 
 
 
 
 
 
 
 
 
5
  base_model:
6
- - stabilityai/stable-diffusion-2-1
7
- pipeline_tag: image-to-3d
8
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: openrail
3
  language:
4
  - en
5
+ pipeline_tag: image-to-image
6
+ datasets:
7
+ - mvp18/gscenes_pretrain
8
+ tags:
9
+ - diffusion
10
+ - image-to-image
11
+ - image-to-3d
12
+ - 3d-reconstruction
13
+ - gaussian-splatting
14
+ - pose-free
15
+ - sparse-view
16
+ - rgbd
17
  base_model:
18
+ - stabilityai/stable-diffusion-2
19
+ ---
20
+
21
+ ## Summary
22
+
23
+ This repository provides checkpoints used in the **Gaussian Scenes** pipeline for pose-free, sparse-view scene reconstruction. The weights are stored in Diffusers format and organized as two components:
24
+
25
+ - **UNet** — denoising backbone (Diffusers UNet) adapted for our pipeline.
26
+ - **VAE** — variational autoencoder used for latent encoding/decoding.
27
+
28
+ These checkpoints are intended for research use and model reproducibility.
29
+
30
+ ## Usage
31
+
32
+ For a guide on how to use this model, check out the [https://github.com/gaussian-scenes](official repository).
33
+
34
+ ## Citation
35
+
36
+ If you use these checkpoints in your work, please cite the associated paper:
37
+
38
+ ```
39
+ @article{
40
+ paul2025gaussian,
41
+ title={Gaussian Scenes: Pose-Free Sparse-View Scene Reconstruction using Depth-Enhanced Diffusion Priors},
42
+ author={Soumava Paul and Prakhar Kaushik and Alan Yuille},
43
+ journal={Transactions on Machine Learning Research},
44
+ issn={2835-8856},
45
+ year={2025},
46
+ url={https://openreview.net/forum?id=yp1CYo6R0r},
47
+ note={}
48
+ }
49
+ ```
50
+
51
+ The HuggingFace paper page can be found [https://huggingface.co/papers/2411.15966](here).