Exported using the following:

from ultralytics import YOLO

url = "https://hf.co/MykolaL/DelineateAnything/resolve/main/DelineateAnything.pt"  # or DelineateAnything-S.pt
model = YOLO(url)
model.fuse()

# FP32
model.export(format="onnx", simplify=True, dynamic=False, device="cpu", nms=False, half=False)

# FP16 requires CUDA
model.to("cuda").export(format="onnx", simplify=True, dynamic=False, device=0, nms=False, half=True)
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support