LiheYoung_depth-anything-large-hf
LiheYoung · View on Hugging Face ↗
Get this model
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-hfOpen magnet in torrent client · infohash f22fa6ac15b5126e14d5817114c5ed443c2d5ecf
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 3.3 KB (3,356 B) | ce690591616ef8a667f200448963f2b4007045f6 | b1d4eddf220b4d42ad3fc00811e83baac58cce8085b726371673d23648344ae9 |
| config.json | 1.4 KB (1,433 B) | 0cb9e5b0a0eeca5526c54d529f6e4ad0f0af7d4e | 0e06ef1e45848a429717772dae0a27877781ae413dc03682138f145fd1c46364 |
| model.safetensors | 1.25 GB (1,341,322,868 B) | 13d8aba5dadd07c3d755ec170057e3e38048c7e7 | bc27360a3e6906e5ddd8f618e2dcde11362327361918b8f76793e42e25de31b3 |
| preprocessor_config.json | 437 B (437 B) | 4b48811870a9d567ee23549c08249fe943e57916 | 533b16a60445d7cab5086d39b45f92be45624b977972c62d5984d93e98366063 |
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 repository | LiheYoung/depth-anything-large-hf |
|---|---|
| Revision (pinned) | 27ccb0920352c0c37b3a96441873c8d37bd52fb6 |
| Fetched at | 2026-09-02T04:27:02Z |
| License at fetch | apache-2.0 |
| Snapshot tool | huggingface · seedbank 0.1.0 |
Trackers
- udp://announce.aitorrent.org:6969/announce
- http://announce.aitorrent.org:7070/announce
- udp://announce2.aitorrent.org:6970/announce
- http://announce2.aitorrent.org:7071/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://open.demonii.com:1337/announce
- udp://open.stealth.si:80/announce
- udp://exodus.desync.com:6969/announce
- udp://tracker.torrent.eu.org:451/announce
✓ 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