Intel / dpt-beit-large-512

huggingface.co
Total runs: 406
24-hour runs: 0
7-day runs: -81
30-day runs: -109
Model's Last Updated: June 22 2024
depth-estimation

Introduction of dpt-beit-large-512

Model Details of dpt-beit-large-512

Overview of Monocular depth estimation and BEiT

Monocular depth estimation, aiming to infer detailed depth from a single image or camera view, finds applications in fields like generative AI, 3D reconstruction, and autonomous driving. However, deriving depth from individual pixels in a single image is challenging due to the underconstrained nature of the problem. Recent advancements attribute progress to learning-based methods, particularly with MiDaS, leveraging dataset mixing and scale-and-shift-invariant loss. MiDaS has evolved with releases featuring more powerful backbones and lightweight variants for mobile use. With the rise of transformer architectures in computer vision, including those pioneered by models like ViT, there's been a shift towards using them for depth estimation. Inspired by this, MiDaS v3.1 incorporates promising transformer-based encoders alongside traditional convolutional ones, aiming for a comprehensive investigation of depth estimation techniques. The paper focuses on describing the integration of these backbones into MiDaS, providing a thorough comparison of different v3.1 models, and offering guidance on utilizing future backbones with MiDaS.

Input Image Output Depth Image
input image Depth image
Model description

This DPT model uses the BEiT model as backbone and adds a neck + head on top for monocular depth estimation. model image

The previous release MiDaS v3.0 solely leverages the vanilla vision transformer ViT, MiDaS v3.1 offers additional models based on BEiT, Swin, SwinV2, Next-ViT and LeViT.

DPT 3.1 (BEiT backbone)

The highest quality depth estimation is achieved using the BEiT transformer. We provide variants such as BEiT512-L, BEiT384-L, and BEiT384-B, where the numbers signify training resolutions of 512x512 and 384x384, while the letters denote large and base models respectively. Although newer versions like BEiT v2 and BEiT-3 exist, they were not explored in our study. BEiT v2 lacked pretrained checkpoints with resolutions of 384x384 or higher, only offering them at 224x224. BEiT-3 was released after our study was completed.

DPT (Dense Prediction Transformer) model trained on 1.4 million images for monocular depth estimation. It was introduced in the paper Vision Transformers for Dense Prediction by Ranftl et al. (2021) and first released in this repository .

This model card refers specifically to BEiT512-L in the paper, and is refered to dpt-beit-large-512. A more recent paper from 2013, specifically discussing BEit, is in this paper MiDaS v3.1 – A Model Zoo for Robust Monocular Relative Depth Estimation

The model card has been written in combination by the Hugging Face team and Intel.

Model Detail Description
Model Authors - Company Intel
Date March 7, 2024
Version 1
Type Computer Vision - Monocular Depth Estimation
Paper or Other Resources MiDaS v3.1 – A Model Zoo for Robust Monocular Relative Depth Estimation and GitHub Repo
License MIT
Questions or Comments Community Tab and Intel Developers Discord
Intended Use Description
Primary intended uses You can use the raw model for zero-shot monocular depth estimation. See the model hub to look for fine-tuned versions on a task that interests you.
Primary intended users Anyone doing monocular depth estimation
Out-of-scope uses This model in most cases will need to be fine-tuned for your particular task. The model should not be used to intentionally create hostile or alienating environments for people.
How to use

Be sure the to update PyTorch as Transformers as mismatches in versions can generate erros such as: "TypeError: unsupported operand type(s) for //: 'NoneType' and 'NoneType'".

As tested by this contributor, the following versions ran correctly:

import torch
import transformers
print(torch.__version__)
print(transformers.__version__)
out: '2.2.1+cpu'
out: '4.37.2'
To Install:
pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu
 

To Use:

Here is how to use this model for zero-shot depth estimation on an image:

from transformers import DPTImageProcessor, DPTForDepthEstimation
import torch
import numpy as np
from PIL import Image
import requests

url = "http://images.cocodataset.org/val2017/000000039769.jpg"
image = Image.open(requests.get(url, stream=True).raw)

processor = DPTImageProcessor.from_pretrained("Intel/dpt-beit-large-512")
model = DPTForDepthEstimation.from_pretrained("Intel/dpt-beit-large-512")

# prepare image for the model
inputs = processor(images=image, return_tensors="pt")

with torch.no_grad():
    outputs = model(**inputs)
    predicted_depth = outputs.predicted_depth

# interpolate to original size
prediction = torch.nn.functional.interpolate(
    predicted_depth.unsqueeze(1),
    size=image.size[::-1],
    mode="bicubic",
    align_corners=False,
)

# visualize the prediction
output = prediction.squeeze().cpu().numpy()
formatted = (output * 255 / np.max(output)).astype("uint8")
depth = Image.fromarray(formatted)
depth

or one can use the pipeline API:

from transformers import pipeline

pipe = pipeline(task="depth-estimation", model="Intel/dpt-beit-large-512")
result = pipe("http://images.cocodataset.org/val2017/000000181816.jpg")
result["depth"]
Quantitative Analyses
Model Square Resolution HRWSI RMSE Square Resolution Blended MVS REL Square Resolution ReDWeb RMSE
BEiT 384-L 0.068 0.070 0.076
Swin-L Training 1 0.0708 0.0724 0.0826
Swin-L Training 2 0.0713 0.0720 0.0831
ViT-L 0.071 0.072 0.082
--- --- --- ---
Next-ViT-L-1K-6M 0.075 0.073 0.085
DeiT3-L-22K-1K 0.070 0.070 0.080
ViT-L-Hybrid 0.075 0.075 0.085
DeiT3-L 0.077 0.075 0.087
--- --- --- ---
ConvNeXt-XL 0.075 0.075 0.085
ConvNeXt-L 0.076 0.076 0.087
EfficientNet-L2 0.165 0.277 0.219
--- --- --- ---
ViT-L Reversed 0.071 0.073 0.081
Swin-L Equidistant 0.072 0.074 0.083
--- --- --- ---

Ethical Considerations and Limitations

dpt-beit-large-512 can produce factually incorrect output, and should not be relied on to produce factually accurate information. Because of the limitations of the pretrained model and the finetuning datasets, it is possible that this model could generate lewd, biased or otherwise offensive outputs.

Therefore, before deploying any applications of dpt-beit-large-512, developers should perform safety testing.

Caveats and Recommendations

Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model.

Here are a couple of useful links to learn more about Intel's AI software:

  • Intel Neural Compressor link
  • Intel Extension for Transformers link

Disclaimer

The license on this model does not constitute legal advice. We are not responsible for the actions of third parties who use this model. Please cosult an attorney before using this model for commercial purposes.

BibTeX entry and citation info
@article{DBLP:journals/corr/abs-2103-13413,
  author    = {Ren{\'{e}} Reiner Birkl, Diana Wofk, Matthias Muller},
  title     = {MiDaS v3.1 – A Model Zoo for Robust Monocular Relative Depth Estimation},
  journal   = {CoRR},
  volume    = {abs/2307.14460},
  year      = {2021},
  url       = {https://arxiv.org/abs/2307.14460},
  eprinttype = {arXiv},
  eprint    = {2307.14460},
  timestamp = {Wed, 26 Jul 2023},
  biburl    = {https://dblp.org/rec/journals/corr/abs-2307.14460.bib},
  bibsource = {dblp computer science bibliography, https://dblp.org}
}

Runs of Intel dpt-beit-large-512 on huggingface.co

406
Total runs
0
24-hour runs
-18
3-day runs
-81
7-day runs
-109
30-day runs

More Information About dpt-beit-large-512 huggingface.co Model

More dpt-beit-large-512 license Visit here:

https://choosealicense.com/licenses/mit

dpt-beit-large-512 huggingface.co

dpt-beit-large-512 huggingface.co is an AI model on huggingface.co that provides dpt-beit-large-512's model effect (), which can be used instantly with this Intel dpt-beit-large-512 model. huggingface.co supports a free trial of the dpt-beit-large-512 model, and also provides paid use of the dpt-beit-large-512. Support call dpt-beit-large-512 model through api, including Node.js, Python, http.

dpt-beit-large-512 huggingface.co Url

https://huggingface.co/Intel/dpt-beit-large-512

Intel dpt-beit-large-512 online free

dpt-beit-large-512 huggingface.co is an online trial and call api platform, which integrates dpt-beit-large-512's modeling effects, including api services, and provides a free online trial of dpt-beit-large-512, you can try dpt-beit-large-512 online for free by clicking the link below.

Intel dpt-beit-large-512 online free url in huggingface.co:

https://huggingface.co/Intel/dpt-beit-large-512

dpt-beit-large-512 install

dpt-beit-large-512 is an open source model from GitHub that offers a free installation service, and any user can find dpt-beit-large-512 on GitHub to install. At the same time, huggingface.co provides the effect of dpt-beit-large-512 install, users can directly use dpt-beit-large-512 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

dpt-beit-large-512 install url in huggingface.co:

https://huggingface.co/Intel/dpt-beit-large-512

Url of dpt-beit-large-512

dpt-beit-large-512 huggingface.co Url

Provider of dpt-beit-large-512 huggingface.co

Intel
ORGANIZATIONS

Other API from Intel

huggingface.co

Total runs: 779.1K
Run Growth: 346.2K
Growth Rate: 44.44%
Updated:February 09 2024
huggingface.co

Total runs: 41.5K
Run Growth: -6.8K
Growth Rate: -16.29%
Updated:February 24 2024
huggingface.co

Total runs: 27.5K
Run Growth: 2.6K
Growth Rate: 9.56%
Updated:March 29 2024
huggingface.co

Total runs: 15.8K
Run Growth: 6.6K
Growth Rate: 41.97%
Updated:February 24 2025
huggingface.co

Total runs: 1.9K
Run Growth: -2.1K
Growth Rate: -111.85%
Updated:March 26 2024
huggingface.co

Total runs: 1.5K
Run Growth: 284
Growth Rate: 18.92%
Updated:May 20 2024
huggingface.co

Total runs: 876
Run Growth: 260
Growth Rate: 29.68%
Updated:June 12 2024