Kai422kx commited on
Commit
c7c29a1
·
verified ·
1 Parent(s): 9e302f1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -2
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- library_name: dust3r
3
  tags:
4
  - image-to-3d
5
  - model_hub_mixin
@@ -8,4 +8,35 @@ tags:
8
 
9
  This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
10
  - Library: https://github.com/kai422/DAS3R
11
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ library_name: das3r
3
  tags:
4
  - image-to-3d
5
  - model_hub_mixin
 
8
 
9
  This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
10
  - Library: https://github.com/kai422/DAS3R
11
+ - Docs: [More Information Needed]
12
+
13
+ ## DAS3R: Dynamics-Aware Gaussian Splatting for Static Scene Reconstruction
14
+
15
+ <video controls autoplay loop>
16
+ <source src="https://kai422.github.io/DAS3R/assets/davis.mp4" type="video/mp4">
17
+ Your browser does not support the video tag.
18
+ </video>
19
+
20
+ <video controls autoplay loop>
21
+ <source src="https://kai422.github.io/DAS3R/assets/sintel.mp4" type="video/mp4">
22
+ Your browser does not support the video tag.
23
+ </video>
24
+
25
+ # Model info
26
+
27
+ - GitHub page: https://github.com/kai422/DAS3R
28
+ - Project page: https://kai422.github.io/DAS3R/
29
+
30
+ # How to use
31
+
32
+ First, [install das3r](https://github.com/kai422/DAS3R).
33
+ To load the model:
34
+
35
+ ```python
36
+ from dust3r.model import AsymmetricCroCo3DStereo
37
+ import torch
38
+
39
+ model = AsymmetricCroCo3DStereo.from_pretrained("Kai422kx/das3r_checkpoint-last.pth")
40
+
41
+ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
42
+ model.to(device)