Downloads · 30 days
2.9K
10% of all-time downloads
naver/DUSt3R_ViTLarge_BaseDecoder_512_linear
DUSt3R_ViTLarge_BaseDecoder_512_linear is a image-to-3d model from naver. Use it for the image-to-3d task on the model card, and read the license before you ship it in a product. It is set up for dust3r.
The code is distributed under the CC BY-NC-SA 4.0 License. See LICENSE for more information. For the checkpoints, make sure to agree to the license of all the public training datasets and base checkpoints we used, in…
Downloads · 30 days
2.9K
10% of all-time downloads
All-time downloads
28.5K
Public
Parameters
532M
2.1 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors2.1 GB · 100%
From the Hugging Face model README
@inproceedings{dust3r_cvpr24,
title={DUSt3R: Geometric 3D Vision Made Easy},
author={Shuzhe Wang and Vincent Leroy and Yohann Cabon and Boris Chidlovskii and Jerome Revaud},
booktitle = {CVPR},
year = {2024}
}
@misc{dust3r_arxiv23,
title={DUSt3R: Geometric 3D Vision Made Easy},
author={Shuzhe Wang and Vincent Leroy and Yohann Cabon and Boris Chidlovskii and Jerome Revaud},
year={2023},
eprint={2312.14132},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2312.14132},
}
The code is distributed under the CC BY-NC-SA 4.0 License. See LICENSE for more information. For the checkpoints, make sure to agree to the license of all the public training datasets and base checkpoints we used, in addition to CC-BY-NC-SA 4.0. See section: Our Hyperparameters for details.
Gihub page: https://github.com/naver/dust3r/ Project page: https://dust3r.europe.naverlabs.com/
| Modelname | Training resolutions | Head | Encoder | Decoder |
|---|---|---|---|---|
| DUSt3R_ViTLarge_BaseDecoder_512_linear | 512x384, 512x336, 512x288, 512x256, 512x160 | Linear | ViT-L | ViT-B |
First, install dust3r. To load the model:
from dust3r.model import AsymmetricCroCo3DStereo
import torch
model = AsymmetricCroCo3DStereo.from_pretrained("naver/DUSt3R_ViTLarge_BaseDecoder_512_linear")
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model.to(device)