模型下載 (Beta)

模型下載

Dataverse (beta) 提供了 ONNX FP16 版本下載和簡易的 inference 操作方式。

circle-info

Hint

您可以在 Model 頁面上下載訓練好的AI模型。

快速開始

參考實際操作影片:

ONNX 模型 inference 辦法 (onnxruntime>=1.9)

準備 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