Spaces:
Runtime error
Runtime error
Create BERTSpace.html
Browse files- client/src/BERTSpace.html +43 -0
client/src/BERTSpace.html
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
|
| 4 |
+
<head>
|
| 5 |
+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149275901-1"></script>
|
| 6 |
+
<script>
|
| 7 |
+
window.dataLayer = window.dataLayer || [];
|
| 8 |
+
function gtag() { dataLayer.push(arguments); }
|
| 9 |
+
gtag('js', new Date());
|
| 10 |
+
gtag('config', 'UA-149275901-2');
|
| 11 |
+
</script>
|
| 12 |
+
<meta charset="UTF-8">
|
| 13 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 14 |
+
<title>BERTSpace</title>
|
| 15 |
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
|
| 16 |
+
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
| 17 |
+
<link rel="stylesheet" type="text/css" href="main.css">
|
| 18 |
+
<link rel="shortcut icon" href="./img/BERTSpace_favicon.png" type="image/png">
|
| 19 |
+
</head>
|
| 20 |
+
|
| 21 |
+
<body style="font-size: 16px;">
|
| 22 |
+
<div class="section-header" id="header">
|
| 23 |
+
<div class="header-logo">
|
| 24 |
+
<a href="/"><img src="./img/BERTSpace.png" alt="BERTSpace Logo" height="30px"></a>
|
| 25 |
+
</div>
|
| 26 |
+
<div id="headertext">
|
| 27 |
+
An BERT Space
|
| 28 |
+
</div>
|
| 29 |
+
|
| 30 |
+
<div class="header-info">
|
| 31 |
+
Bengali NLP
|
| 32 |
+
</div>
|
| 33 |
+
|
| 34 |
+
</div>
|
| 35 |
+
|
| 36 |
+
<div id="attention-vis"></div>
|
| 37 |
+
|
| 38 |
+
<script src="vendor.js"></script>
|
| 39 |
+
<script src="main.js"></script>
|
| 40 |
+
|
| 41 |
+
</body>
|
| 42 |
+
|
| 43 |
+
</html>
|