Spaces:
Runtime error
Runtime error
File size: 368 Bytes
fe4a287 63858e7 fe4a287 63858e7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { MainGraphic } from './vis/attentionVis'
import "!file-loader?name=exBERT.html!../exBERT.html";
import "!file-loader?name=index.html!../index.html";
import "../css/main.scss"
window.onload = () => {
const base = document.getElementById('attention-vis')
//@ts-ignore
const mainVis = new MainGraphic(base)
console.log("Done loading window");
}
|