Spaces:
Build error
Build error
File size: 968 Bytes
d61b9c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
interface OutputScore {
label: string;
index: number;
score: number;
}
export enum FeatureType {
TEXT = "text",
IMAGE = "image",
GENERAL = "general",
EMPTY = "empty",
}
type GenericFeatureOutput<F extends FeatureType, T> = {
type: F;
name: string;
contribution: number;
} & T;
export type FeatureOutput =
| GenericFeatureOutput<
FeatureType.TEXT,
{ base: number[]; modified: number[] }
>
| GenericFeatureOutput<FeatureType.IMAGE, { base: string; modified: string }>
| GenericFeatureOutput<
FeatureType.GENERAL,
{ base: number[]; modified: number[] }
>
| GenericFeatureOutput<FeatureType.EMPTY, {}>;
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[];
|