thomwolf's picture
thomwolf HF staff
update
f2c15d5
raw
history blame
323 Bytes
// import { plotClusters } from './clusters'
import { init_ablation_plot } from './plotting'
import { init_memory_plot } from './memory'
document.addEventListener("DOMContentLoaded", () => {
console.log("DOMContentLoaded");
// plotClusters();
init_ablation_plot();
init_memory_plot();
}, { once: true });