-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (65 loc) · 3.42 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<script type="text/javascript" src="js/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript" src='js/jquery-3.3.1.min.js'></script>
<script type="text/javascript" src="js/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="js/gunzip.min.js"></script>
<link rel='stylesheet' href='css/style.css'>
<script type='text/javascript' src='js/pslViz.js'></script>
</head>
<body>
<div class="psl-viz">
<div class='splash'>
<img src="assets/psl_logo.svg" alt="The PSL logo">
<div class="splash-info">
<h1> PSL Data Visualization </h1>
<h2> Created by the UCSC LINQS Lab </h2>
<p>
A PSL Visualization that can be used for model understanding and debugging.
The application is made up of multiple modules that convey information from
different layers of a PSL model. These modules are organized by: model information,
ground rule information, and ground atom information. We hope this tool can help
PSL developers create the best models possible! The project's source code can be found
on <a href="https://github.com/linqs/psl-vmi">Github</a>.
</p>
<p> Provide a .gz file from a PSL run with the -viz flag </p>
<input type="file" class="psl-data-input">
</div>
</div>
<div class='loading'>
<span>Rebuilding Model...</span>
<div class='animation'>
<video autoplay loop muted playsinline>
<source src="assets/linqs-logo-animation.webm" type="video/webm">
</video>
</div>
</div>
</div>
<footer class="site-footer">
<div class="wrapper">
<div class="simple-footer">
<h2 class="footer-heading">Probabilistic Soft Logic Visualization</h2>
<span>
<ul class="social-media-list">
<li><a href="https://github.com/linqs"><svg class="svg-icon"><use xlink:href="assets/minima-social-icons.svg#github"></use></svg></a></li>
<li><a href="https://www.twitter.com/LINQS_edu"><svg class="svg-icon"><use xlink:href="assets/minima-social-icons.svg#twitter"></use></svg></a></li>
<li><a href="https://youtube.com/LINQSLab"><svg class="svg-icon"><use xlink:href="assets/minima-social-icons.svg#youtube"></use></svg></a></li>
</ul>
</span>
</div>
<div class="simple-footer">
<span>
© 2020 LINQS Resreach Group.
See <a href="https://github.com/AaronRodden/PSLViz/blob/master/LICENSE.md">license</a>.
</span>
<div class="issues">
Issues or corrections? <a href="https://github.com/AaronRodden/PSLViz/issues">Click here</a>.
</div>
</div>
</div>
</footer>
</body>
</html>