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

← All models

LiheYoung_depth-anything-large-hf

LiheYoung · 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.


license: apache-2.0 tags:

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

Depth Anything (large-sized model, Transformers version)

Depth Anything model. It was introduced in the paper Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data by Lihe Yang et al. and first released in this repository.

Online demo is also provided.

Disclaimer: The team releasing Depth Anything did not write a model card for this model so this model card has been written by the Hugging Face team.

Model description

Depth Anything leverages the DPT architecture with a DINOv2 backbone.

The model is trained on ~62 million 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="LiheYoung/depth-anything-large-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, one can use the classes themselves:

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("LiheYoung/depth-anything-large-hf")
model = AutoModelForDepthEstimation.from_pretrained("LiheYoung/depth-anything-large-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, we refer to the documentation.

BibTeX entry and citation info

@misc{yang2024depth,
      title={Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data}, 
      author={Lihe Yang and Bingyi Kang and Zilong Huang and Xiaogang Xu and Jiashi Feng and Hengshuang Zhao},
      year={2024},
      eprint={2401.10891},
      archivePrefix={arXiv},
      primaryClass={cs.CV}
}

Magnet link

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

magnet:?xt=urn:btih:f22fa6ac15b5126e14d5817114c5ed443c2d5ecf&dn=LiheYoung_depth-anything-large-hf

Open magnet in torrent client · infohash f22fa6ac15b5126e14d5817114c5ed443c2d5ecf

Files & hashes

PathSizesha1sha256
README.md3.3 KB (3,356 B)ce690591616ef8a667f200448963f2b4007045f6b1d4eddf220b4d42ad3fc00811e83baac58cce8085b726371673d23648344ae9
config.json1.4 KB (1,433 B)0cb9e5b0a0eeca5526c54d529f6e4ad0f0af7d4e0e06ef1e45848a429717772dae0a27877781ae413dc03682138f145fd1c46364
model.safetensors1.25 GB (1,341,322,868 B)13d8aba5dadd07c3d755ec170057e3e38048c7e7bc27360a3e6906e5ddd8f618e2dcde11362327361918b8f76793e42e25de31b3
preprocessor_config.json437 B (437 B)4b48811870a9d567ee23549c08249fe943e57916533b16a60445d7cab5086d39b45f92be45624b977972c62d5984d93e98366063

Cite this release

Canonical URL
https://aiseedbank.org/models/LiheYoung_depth-anything-large-hf/
Slug
LiheYoung_depth-anything-large-hf
Infohash
f22fa6ac15b5126e14d5817114c5ed443c2d5ecf
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: LiheYoung_depth-anything-large-hf.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryLiheYoung/depth-anything-large-hf
Revision (pinned)27ccb0920352c0c37b3a96441873c8d37bd52fb6
Fetched at2026-09-02T04:27:02Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:27:17Z

apache-2.01.25 GB (1,341,328,094 bytes)transformerssafetensorsdepth_anythingdepth-estimationvisionendpoints_compatiblepaper: 2401.10891