interface OutputScore { label: string; index: number; score: number; } export enum FeatureType { TEXT = "text", IMAGE = "image", GENERAL = "general", EMPTY = "empty", } type GenericFeatureOutput = { type: F; name: string; contribution: number; } & T; export type FeatureOutput = | GenericFeatureOutput< FeatureType.TEXT, { base: number[]; modified: number[] } > | GenericFeatureOutput | GenericFeatureOutput< FeatureType.GENERAL, { base: number[]; modified: number[] } > | GenericFeatureOutput; export interface VisualizationOutput { model_index: number; feature_outputs: FeatureOutput[]; actual: OutputScore; predicted: OutputScore[]; active_index: number; } //When multiple models are compared, visualizations are grouped together export type VisualizationGroup = VisualizationOutput[];