AI SeedbankHelp preserve open and free AI for humanity's future

← All models

depth-anything_Depth-Anything-V2-Base-hf

depth-anything · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: 1 · Leechers: 0

Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


library_name: transformers library: transformers license: cc-by-nc-4.0 tags:

  • depth
  • relative depth pipeline_tag: depth-estimation widget:
  • inference: false

Depth Anything V2 Base – Transformers Version

Depth Anything V2 is trained from 595K synthetic labeled images and 62M+ real unlabeled images, providing the most capable monocular depth estimation (MDE) model with the following features:

  • more fine-grained details than Depth Anything V1
  • more robust than Depth Anything V1 and SD-based models (e.g., Marigold, Geowizard)
  • more efficient (10x faster) and more lightweight than SD-based models
  • impressive fine-tuned performance with our pre-trained models

This model checkpoint is compatible with the transformers library.

Depth Anything V2 was introduced in the paper of the same name by Lihe Yang et al. It uses the same architecture as the original Depth Anything release, but uses synthetic data and a larger capacity teacher model to achieve much finer and robust depth predictions. The original Depth Anything model was introduced in the paper Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data by Lihe Yang et al., and was first released in this repository.

Online demo.

Model description

Depth Anything V2 leverages the DPT architecture with a DINOv2 backbone.

The model is trained on ~600K synthetic labeled images and ~62 million real unlabeled images, obtaining state-of-the-art results for both relative and absolute depth estimation.

Depth Anything overview. Taken from the original paper.

Intended uses & limitations

You can use the raw model for tasks like zero-shot depth estimation. See the model hub to look for other versions on a task that interests you.

How to use

Here is how to use this model to perform zero-shot depth estimation:

from transformers import pipeline
from PIL import Image
import requests

# load pipe
pipe = pipeline(task="depth-estimation", model="depth-anything/Depth-Anything-V2-Base-hf")

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

# inference
depth = pipe(image)["depth"]

Alternatively, you can use the model and processor classes:

from transformers import AutoImageProcessor, AutoModelForDepthEstimation
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)

image_processor = AutoImageProcessor.from_pretrained("depth-anything/Depth-Anything-V2-Base-hf")
model = AutoModelForDepthEstimation.from_pretrained("depth-anything/Depth-Anything-V2-Base-hf")

# prepare image for the model
inputs = image_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,
)

For more code examples, please refer to the documentation.

Citation

@misc{yang2024depth,
      title={Depth Anything V2}, 
      author={Lihe Yang and Bingyi Kang and Zilong Huang and Zhen Zhao and Xiaogang Xu and Jiashi Feng and Hengshuang Zhao},
      year={2024},
      eprint={2406.09414},
      archivePrefix={arXiv},
      primaryClass={id='cs.CV' full_name='Computer Vision and Pattern Recognition' is_active=True alt_name=None in_archive='cs' is_general=False description='Covers image processing, computer vision, pattern recognition, and scene understanding. Roughly includes material in ACM Subject Classes I.2.10, I.4, and I.5.'}
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:82ce58557e4d27b0052c261d2423c09f4ae17cf5&dn=depth-anything_Depth-Anything-V2-Base-hf

Open magnet in torrent client · infohash 82ce58557e4d27b0052c261d2423c09f4ae17cf5

Files & hashes

PathSizesha1sha256
README.md4.3 KB (4,424 B)4761b927b7686f0d585780c861206f3010c081b3486d80b3408b2655f0e53238d399f2c6730b80da538653ef9b700c2cdbf9f9bb
config.json953 B (953 B)72cc0074d0d0c64f507eb415085013df8bca80e91f616484953fbbddcc14da69ab81ef834fd58c11be04fa2f2eecf5696b2f7389
model.safetensors371.9 MB (389,916,980 B)0fc9f4d93df963ea80a4c9069e66d3dcb6094d2e9996d15c334d264cfcc29f4318d7d3789a006ecc444782c2fb82f7eaa1acb8bf
preprocessor_config.json775 B (775 B)a7822a90a0e91a14d50d1996953bac8f389a4377d41175c0d889477ca8fc67191e540faef14baf6275157b3fdecf78469e6bbf84

Cite this release

Canonical URL
https://aiseedbank.org/models/depth-anything_Depth-Anything-V2-Base-hf/
Slug
depth-anything_Depth-Anything-V2-Base-hf
Infohash
82ce58557e4d27b0052c261d2423c09f4ae17cf5
License
cc-by-nc-4.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: depth-anything_Depth-Anything-V2-Base-hf.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorydepth-anything/Depth-Anything-V2-Base-hf
Revision (pinned)b1958afc87fb45a9e3746cb387596094de553ed8
Fetched at2026-09-02T04:33:20Z
License at fetchcc-by-nc-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:33:25Z

cc-by-nc-4.0non-commercial use only371.9 MB (389,923,132 bytes)transformerssafetensorsdepth_anythingdepth-estimationdepthrelative depthendpoints_compatiblepaper: 2406.09414paper: 2401.10891