das3r / README.md
Kai422kx's picture
Update README.md
73d4c57 verified
metadata
library_name: das3r
tags:
  - image-to-3d
  - model_hub_mixin
  - pytorch_model_hub_mixin

This model has been pushed to the Hub using the PytorchModelHubMixin integration:

DAS3R: Dynamics-Aware Gaussian Splatting for Static Scene Reconstruction

Model info

How to use

First, install das3r. To load the model:

from dust3r.model import AsymmetricCroCo3DStereo
import torch

model = AsymmetricCroCo3DStereo.from_pretrained("Kai422kx/das3r")

device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model.to(device)