richardchencccc commited on
Commit
de753cf
·
verified ·
1 Parent(s): 8591686

Add model card

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ library_name: pytorch
4
+ pipeline_tag: image-to-3d
5
+ tags:
6
+ - 3d
7
+ - gaussian-splatting
8
+ - novel-view-synthesis
9
+ - feed-forward
10
+ - pytorch
11
+ ---
12
+
13
+ # FreeStreamGS: Feed-Forward Streaming 3D Gaussian Splatting from Unposed Images
14
+
15
+ [Project Website](https://richardchen225.github.io/freestreamgs/) | [Paper](https://arxiv.org/abs/2606.03254) | [GitHub Repo](https://github.com/richardchen225/FreeStreamGS_code)
16
+
17
+ This repository hosts the official FreeStreamGS checkpoint.
18
+
19
+ ## Model File
20
+
21
+ - `model.ckpt`: FreeStreamGS checkpoint for inference and evaluation.
22
+
23
+ ## Usage
24
+
25
+ Please see the GitHub repository for installation instructions, dataset preparation, and testing commands.
26
+
27
+ The checkpoint is expected to be used with the FreeStreamGS codebase by setting:
28
+
29
+ ```bash
30
+ PRE_FREEGS_PATH=/path/to/model.ckpt
31
+ ```
32
+
33
+ or by downloading this file into:
34
+
35
+ ```text
36
+ weights/freestreamgs.ckpt
37
+ ```
38
+
39
+ ## Citation
40
+
41
+ If you find FreeStreamGS useful, please cite:
42
+
43
+ ```bibtex
44
+ @article{chen2026freestreamgs,
45
+ title={FreeStreamGS: Feed-Forward Streaming 3D Gaussian Splatting from Unposed Images},
46
+ author={Chen, Ruiyang and Li, Feiran and Zhou, Chu and Li, Zonglin and Ma, Zhanyu and Guo, Heng},
47
+ journal={arXiv preprint arXiv:2606.03254},
48
+ year={2026}
49
+ }
50
+ ```
51
+
52
+ ## License
53
+
54
+ The code and model are released under the FreeStreamGS license. Please see the license file in the GitHub repository for details.