Transformers How to use MackinationsAi/depth-anything-v2-large-hf with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("depth-estimation", model="MackinationsAi/depth-anything-v2-large-hf") # Load model directly
from transformers import DepthAnythingV2ForDepthEstimation
model = DepthAnythingV2ForDepthEstimation.from_pretrained("MackinationsAi/depth-anything-v2-large-hf", dtype="auto")