File size: 4,268 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import { calcHSLFromScore } from "../utils/color";
import { DataPoint } from "../utils/dataPoint";
import React from "react";
import styles from "../App.module.css";
import Tooltip from "./Tooltip";
import { Bar } from "react-chartjs-2";
import { FeatureOutput } from "../models/visualizationOutput";

interface FeatureProps<T> {
  data: T;
  hideHeaders?: boolean;
}

type ImageFeatureProps = FeatureProps<{
  base: string;
  modified: string;
  name: string;
}>;

function ImageFeature(props: ImageFeatureProps) {
  return (
    <>
      {props.hideHeaders && (
        <div className={styles["panel__column__title"]}>
          {props.data.name} (Image)
        </div>
      )}
      <div className={styles["panel__column__body"]}>
        <div className={styles["model-number-spacer"]} />
        <div className={styles.gallery}>
          <div className={styles["gallery__item"]}>
            <div className={styles["gallery__item__image"]}>
              <img
                src={"data:image/png;base64," + props.data.base}
                alt="original"
              />
            </div>
            <div className={styles["gallery__item__description"]}>Original</div>
          </div>
          <div className={styles["gallery__item"]}>
            <div className={styles["gallery__item__image"]}>
              <img
                src={"data:image/png;base64," + props.data.modified}
                alt="attribution"
              />
            </div>
            <div className={styles["gallery__item__description"]}>
              Attribution Magnitude
            </div>
          </div>
        </div>
      </div>
    </>
  );
}

type TextFeatureProps = FeatureProps<{
  base: number[];
  name: string;
  modified: number[];
}>;

function TextFeature(props: TextFeatureProps) {
  const color_words = props.data.base.map((w, i) => {
    return (
      <>
        <span
          style={{
            backgroundColor: calcHSLFromScore(props.data.modified[i], false),
          }}
          className={styles["text-feature-word"]}
        >
          {w}
          <Tooltip label={props.data.modified[i]?.toFixed(3)} />
        </span>{" "}
      </>
    );
  });
  return (
    <>
      {props.hideHeaders && (
        <div className={styles["panel__column__title"]}>
          {props.data.name} (Text)
        </div>
      )}
      <div className={styles["panel__column__body"]}>
        <div className={styles["model-number-spacer"]} />
        {color_words}
      </div>
    </>
  );
}

type GeneralFeatureProps = FeatureProps<{
  base: number[];
  modified: number[];
  name: string;
}>;

function GeneralFeature(props: GeneralFeatureProps) {
  const data = {
    labels: props.data.base,
    datasets: [
      {
        barPercentage: 0.5,
        data: props.data.modified,
        backgroundColor: (dataPoint: DataPoint) => {
          if (!dataPoint.dataset || !dataPoint.dataset.data || dataPoint.datasetIndex === undefined) {
            return "#d45c43"; // Default to red
          }
          const yValue = dataPoint.dataset.data[dataPoint.dataIndex as number] || 0;
          return yValue < 0 ? "#d45c43" : "#80aaff"; // Red if negative, else blue
        },
      },
    ],
  };

  return (
    <Bar
      data={data}
      width={300}
      height={50}
      legend={{ display: false }}
      options={{
        maintainAspectRatio: false,
        scales: {
          xAxes: [
            {
              gridLines: {
                display: false,
              },
            },
          ],
          yAxes: [
            {
              gridLines: {
                lineWidth: 0,
                zeroLineWidth: 1,
              },
            },
          ],
        },
      }}
    />
  );
}

function Feature(props: { data: FeatureOutput; hideHeaders: boolean }) {
  const data = props.data;
  switch (data.type) {
    case "image":
      return <ImageFeature data={data} hideHeaders={props.hideHeaders} />;
    case "text":
      return <TextFeature data={data} hideHeaders={props.hideHeaders} />;
    case "general":
      return <GeneralFeature data={data} />;
    case "empty":
      return <></>;
    default:
      throw new Error("Unsupported feature visualization type: " + data.type);
  }
}

export default Feature;