/** * Language API * OCI Language Service solutions can help enterprise customers integrate AI into their products immediately using our proven, pre-trained and custom models or containers, without a need to set up an house team of AI and ML experts. This allows enterprises to focus on business drivers and development work rather than AI and ML operations, which shortens the time to market. * OpenAPI spec version: 20221001 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Possible TXTC model error analysis */ export interface TextClassificationModelEvaluationResult extends model.EvaluationResultSummary { /** * For CSV format location is rowId(1 is header) and for JSONL location is jsonL line sequence(1 is metadata) */ "location": string; /** * List of true(actual) labels in test data for multi class or multi label TextClassification */ "trueLabels": Array; /** * List of predicted labels by custom multi class or multi label TextClassification model */ "predictedLabels"?: Array; "modelType": string; } export declare namespace TextClassificationModelEvaluationResult { function getJsonObj(obj: TextClassificationModelEvaluationResult, isParentJsonObj?: boolean): object; const modelType = "TEXT_CLASSIFICATION"; function getDeserializedJsonObj(obj: TextClassificationModelEvaluationResult, isParentJsonObj?: boolean): object; }