-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (24 loc) · 1.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>A visualization of the CLIP tag graph</title>
<meta name="description" content="A visualization of CLIP neural network tags, linked by co-occurence">
<meta name="author" content="6r1d">
<link rel="icon" type="image/png" href="./favicon.png" />
<link rel="stylesheet" type="text/css" href="./style.css">
<meta property="og:image" content="./og_image.jpg" />
<meta property="og:description" content="A tag graph for well-known CLIP tags, linked by co-occurence." />
<meta property="og:url"content="https://6r1d.github.io/CLIP_graph_visualized" />
<meta property="og:title" content="A visualization of the CLIP tag graph" />
<script src="//unpkg.com/element-resize-detector/dist/element-resize-detector.min.js"></script>
<script src="//unpkg.com/force-graph"></script>
</head>
<body>
<div id="graph"></div>
<aside id="read_more">
<a href="https://tagnet.readthedocs.io/">Documentation</a>
</aside>
<script src="index.js"></script>
</body>
</html>