Transformers How to use LiheYoung/depth_anything_vitb14 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("depth-estimation", model="LiheYoung/depth_anything_vitb14") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("LiheYoung/depth_anything_vitb14", dtype="auto")