-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-T1XN0KZHMM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-T1XN0KZHMM');
</script>
<title>Phlogistic LLM Map</title>
<meta property="og:title" content="Data-driven Large Language Model lineage map" />
<meta property="og:description" content="Created by Brad Ito - https://bradito.me - Visualize the evolution of Generative AI Large Language Models (LLMs) with references" />
<meta property="og:image" content="https://phlogisticfugu.github.io/phlogistic-llm-map/phlogistic-llm-map.png" />
<meta property="og:url" content="https://phlogisticfugu.github.io/phlogistic-llm-map/" />
<meta property="og:type" content="website" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<img
src="phlogistic-llm-map-fallback"
style="width:100%;height:100%"
class="img-fallback"
/>
</div>
<script type="module" src="index.mjs"></script>
</body>
</html>