Result Object Structure
Understand the structure of prediction results returned by DeGirumJS.
let someResult = await someModel.predict(image);
console.log(someResult);{
"result": [
[
{ "category_id": 1, "label": "foo", "score": 0.2 },
{ "category_id": 0, "label": "bar", "score": 0.1 }
],
"frame123"
],
"imageFrame": imageBitmap
}Inference Result Types
Example Results
Detection Result
Classification Result
Multi-Label Classification Result
Segmentation Mask Result
Pose Detection Result
Was this helpful?

