[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-05-07 UTC."],[],[],null,["# Classifications interface\n\n\u003cbr /\u003e\n\nClassification results for a given classifier head.\n\n**Signature:** \n\n export declare interface Classifications \n\nProperties\n----------\n\n| Property | Type | Description |\n|-----------------------------------------------------------------------|-----------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\n| [categories](./tasks-audio.classifications#classificationscategories) | [Category](./tasks-audio.category#category_interface)\\[\\] | The array of predicted categories, usually sorted by descending scores, e.g., from high to low probability. |\n| [headIndex](./tasks-audio.classifications#classificationsheadindex) | number | The index of the classifier head these categories refer to. This is useful for multi-head models. |\n| [headName](./tasks-audio.classifications#classificationsheadname) | string | The name of the classifier head, which is the corresponding tensor metadata name. Defaults to an empty string if there is no such metadata. |\n\nClassifications.categories\n--------------------------\n\nThe array of predicted categories, usually sorted by descending scores, e.g., from high to low probability.\n\n**Signature:** \n\n categories: Category[];\n\nClassifications.headIndex\n-------------------------\n\nThe index of the classifier head these categories refer to. This is useful for multi-head models.\n\n**Signature:** \n\n headIndex: number;\n\nClassifications.headName\n------------------------\n\nThe name of the classifier head, which is the corresponding tensor metadata name. Defaults to an empty string if there is no such metadata.\n\n**Signature:** \n\n headName: string;"]]