Type alias ClassificationAnalyzerDescription

ClassificationAnalyzerDescription: GenericAnalyzerDescription & {
    properties: {
        model_location: string;
        threshold: number;
        top_k: number;
    };
    type: "classification";
}

(Enterprise Edition only.) An object describing a Classification Analyzer

Type declaration

  • properties: {
        model_location: string;
        threshold: number;
        top_k: number;
    }
    • model_location: string
    • threshold: number
    • top_k: number
  • type: "classification"