forked from Zayne-sprague/MuSR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (83 loc) · 3.73 KB
/
Copy pathindex.html
File metadata and controls
96 lines (83 loc) · 3.73 KB
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
<!DOCTYPE html>
<html lang="en">
<head prefix="og: http://ogp.me/ns#">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MuSR: Murder Mystery NLP Dataset Viewer!</title>
<link rel="stylesheet" href="viewer/treevis/tree.css">
<script src="viewer/treevis/tree.js"></script>
<link rel="stylesheet" href="viewer/styles.css">
<link rel="icon" href="imgs/favicon.ico" type="image/x-icon">
<meta property="og:title" content="MuSR Dataset Viewer">
<meta property="og:description" content="A NLP reasoning dataset featuring murder mysteries and other domains!">
<meta property="og:image" content="https://zayne-sprague.github.io/MuSR/imgs/logo.png">
<meta property="og:url" content="https://zayne-sprague.github.io/MuSR/">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@ZayneSprague">
<meta name="twitter:title" content="MuSR Dataset Viewer">
<meta name="twitter:description" content="A NLP reasoning dataset featuring murder mysteries and other domains!">
<meta name="twitter:image" content="https://zayne-sprague.github.io/MuSR/imgs/logo.png">
</head>
<body>
<header>
<div class="logo-title">
<img src="imgs/logo_resized.webp" alt="Logo" id="logo">
<h1>MuSR</h1>
</div>
<div class="navigation-items">
<nav>
<button class="nav-btn" id="story-btn" disabled>Story</button>
<button class="nav-btn" id="tree-btn" disabled>Tree</button>
</nav>
<div class="additional-links">
<a target="_blank" href="https://arxiv.org/abs/2310.16049" class="link-btn">Paper</a>
<a target="_blank" href="https://github.com/Zayne-sprague/MuSR/tree/main" class="link-btn">Github</a>
</div>
</div>
</header>
<div class="container">
<div class="sidebar expand">
<button id="toggle-sidebar">☰</button>
<div class="sidebar-content">
<div class="category" data-category="mysteries">
<h2>Murder Mysteries</h2>
<div class="items"></div>
</div>
<div class="category" data-category="placements">
<h2>Object Placements</h2>
<div class="items"></div>
</div>
<div class="category" data-category="allocation">
<h2>Team Allocation</h2>
<div class="items"></div>
</div>
<div class="category" data-category="custom" id="madeYourOwnButton">
<h2>Made Your Own? View it!</h2>
<div class="items"></div>
</div>
</div>
</div>
<div class="content">
<!-- <div class="selected-title"></div>-->
<div class="panel story_panel">
<button class="expand-btn">Expand Story Window</button>
<div class="outer"><div class="content story"></div></div>
</div>
<div class="panel tree_panel">
<button class="expand-btn">Expand Tree View</button>
<div class="outer"><div class="content" id="treevis"></div></div>
</div>
</div>
</div>
<div id="uploadModal" class="modal">
<div class="modal-content" id="modal_content">
<h2>Upload Your Dataset</h2>
<input type="file" id="fileInput" accept=".json">
<input type="text" id="datasetTitle" placeholder="Dataset Title">
<button id="submitButton">Submit</button>
</div>
</div>
<script src="viewer/script.js"></script>
</body>
</html>