For the complete documentation index, see llms.txt. This page is also available as Markdown.

Model Download (Beta)

Dataverse (beta) provides ONNX FP16 version download and simple inference operation.

Hint

You can perform model download on the Model.

Quick Start

Download model.

Click on the video below for a quick overview:

Download model by dataverse-sdk

Dataverse-sdk install:

Download Steps

ONNX model inference (onnxruntime>=1.9)

Prepare Input

Onnx Inference

Post-Processing for the output

Output terminology

  • One detected object: np.array([n_xc, n_yc, n_w, n_h, confidence score, class_idx])

    • n_xc: normalize box x-center

    • n_yc: normalize box y-center

    • n_w: normalize box width

    • n_h: normalize box height

    • confidence score

    • class_idx: class index of training category list

  • One detection results: array of detected objects

  • Batch detection results: array of detection results

Post-processing script

Last updated