Response model for object segmentation.
import { MasksResponse } from "@livepeer/ai/models/components";
let value: MasksResponse = {
masks: "<value>",
scores: "<value>",
logits: "<value>",
};| Field | Type | Required | Description |
|---|---|---|---|
masks |
string | ✔️ | The generated masks. |
scores |
string | ✔️ | The model's confidence scores for each generated mask. |
logits |
string | ✔️ | The raw, unnormalized predictions (logits) for the masks. |