File size: 6,804 Bytes
3905983 |
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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
// plotly Dark24
const COLORS = [
['46', '145', '229'],
['225', '95', '153'],
['28', '167', '28'],
['251', '13', '13'],
['218', '22', '255'],
// ['34', '42', '42'], Black, which makes the text unreadable
['182', '129', '0'],
['117', '13', '134'],
['235', '102', '59'],
['81', '28', '251'],
['0', '160', '139'],
['251', '0', '209'],
['252', '0', '128'],
['178', '130', '141'],
['108', '124', '50'],
['119', '138', '174'],
['134', '42', '22'],
['167', '119', '241'],
['98', '0', '66'],
['22', '22', '167'],
['218', '96', '202'],
['108', '69', '22'],
// ['13', '42', '99'], Black
['175', '0', '56']
]
const getLabelHoverFormat = (row) => {
return `<b>Text</b>: ${row.text}<br><b>Edu label</b>: ${row.eduScore}`
}
// Number of annotations to display
const K = 15
function createLabelOrderMapping(labels) {
const labelCounts = labels.reduce((acc, label) => {
acc[label] = (acc[label] || 0) + 1;
return acc;
}, {});
const sortedLabels = Object.entries(labelCounts).sort((a, b) => b[1] - a[1]).map(entry => entry[0]);
const labelOrder = {};
sortedLabels.forEach((label, index) => {
labelOrder[label] = index;
});
return labelOrder;
}
const parseAnnotations = async (file) => {
return (await readCSV(file)).filter((cluster_summary) => {
return parseInt(cluster_summary.cluster_id) != -1
}).map((cluster_summary) => {
return {
x: parseFloat(cluster_summary.cluster_position_x),
y: parseFloat(cluster_summary.cluster_position_y),
label: parseInt(cluster_summary.cluster_id),
text: cluster_summary.cluster_summaries,
}
})
}
const addStylingToAnnotations = (annotations) => {
return annotations.map((annotation, i) => {
return {
...annotation,
showarrow: false,
font: {
size: 14,
color: 'black',
weight: 'bold'
},
bgcolor: getColor(annotation.label, 0.9),
borderpad: 2, // Add padding around the text
}
})
}
const getRelevantAnnotations = (annotations, x0, x1, y0, y1, k=K) => {
const relevant_annotations = annotations.filter((annotation) => {
return annotation.x >= x0 && annotation.x <= x1 && annotation.y >= y0 && annotation.y <= y1
})
return relevant_annotations.sort((a, b) => a.ord - b.ord).slice(0, k);
}
const getMinMaxTracesArea = (traces) => {
const x0 = Math.min(...traces.map(trace => trace.x));
const x1 = Math.max(...traces.map(trace => trace.x));
const y0 = Math.min(...traces.map(trace => trace.y));
const y1 = Math.max(...traces.map(trace => trace.y));
return {x0, x1, y0, y1};
}
const readData = async () => {
return (await readCSV('data/clustering/data.csv')).map(row => ({
x: parseFloat(row.X),
y: parseFloat(row.Y),
eduScore: parseFloat(row.edu_labels),
label: parseInt(row.cluster_labels),
text: row.content_display,
}));
}
async function plotClusters() {
const parent = document.getElementById('clusters-plot');
const data = await readData();
const traces = [{
type: 'scatter',
mode: 'markers',
x: data.map(row => row.x),
y: data.map(row => row.y),
marker: {
color: data.map(row => getColor(row.label, 1.0)),
size: 5,
opacity: 8
},
hoverinfo: 'text',
hovertext: data.map(row => getLabelHoverFormat(row)),
hoverlabel: {
bgcolor: 'white'
},
}];
const labelOrder = createLabelOrderMapping(data.map(row => row.label));
const annotations = (await parseAnnotations('data/clustering/info.csv')).map(
(annot) => {
return {
...annot,
ord: labelOrder[annot.label]
}
}
);
const {x0, x1, y0, y1} = getMinMaxTracesArea(data);
const layout = {
height: 550,
width: parent.clientWidth,
xaxis: {
showticklabels: false,
showgrid: false,
zeroline: false,
title: {
text: "Fineweb dataset (clustered using TODO and labeled using TODO),<br> zoom in to see more",
font: {
size: 16,
style: 'italic'
},
// italic
},
},
yaxis: {
showticklabels: false,
showgrid: false,
zeroline: false,
},
annotations: addStylingToAnnotations(getRelevantAnnotations(annotations, x0, x1, y0, y1)),
font: {
family: "apple-system, Arial, sans-serif",
},
margin: {
t: 0,
b: 30,
},
};
Plotly.newPlot(parent, traces, layout);
parent.on('plotly_relayout', (eventdata) => {
// First option zoomed in
if (eventdata["xaxis.range[0]"]) {
const [x0, x1] = [eventdata['xaxis.range[0]'], eventdata['xaxis.range[1]']];
const [y0, y1] = [eventdata['yaxis.range[0]'], eventdata['yaxis.range[1]']];
// Idk maybe we can even recompute the ordering, but I think it's fine to use the global one
const relevant_annotations = getRelevantAnnotations(annotations, x0, x1, y0, y1);
Plotly.relayout(parent, {...layout, annotations: addStylingToAnnotations(relevant_annotations)});
}
// Zoom reset
else if (eventdata["xaxis.autorange"]){
const {x0, x1, y0, y1} = getMinMaxTracesArea(data);
const relevant_annotations = getRelevantAnnotations(annotations, x0, x1, y0, y1);
Plotly.relayout(parent, {...layout, annotations: addStylingToAnnotations(relevant_annotations)});
}
// Otherwise it's just the relayout itself
});
window.addEventListener("resize", () => {
// If the window size is smaller than 768, we don't care as it's not shown
if (window.innerWidth < 768) {
return;
}
Plotly.relayout(parent, {
width: parent.offsetWidth,
});
});
}
document.addEventListener("DOMContentLoaded", () => {
plotClusters();
});
const readCSV = async (file) => {
const data = await fetch(file)
const text = await data.text()
const csv = Papa.parse(text, {header: true});
return csv.data;
}
const getColor = (i, opacity) => {
if (i < 0) {
i = i * -1
}
console.log(COLORS[i % COLORS.length])
return `rgba(${COLORS[i % COLORS.length].join(',')}, ${opacity})`
} |