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