Knowledge Lifecycle
Browse files- 404.html +54 -0
- social-preview.png +0 -0
- style.css +5 -3
404.html
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<!-- ==========================================================================
|
| 3 |
+
File : 404.html
|
| 4 |
+
Project : The Knowledge Lifecycle of Large Language Models
|
| 5 |
+
Purpose : Page shown when a visitor reaches an address this Space does
|
| 6 |
+
not serve, written in the vocabulary of the paper itself.
|
| 7 |
+
Authors : Amey Thakur (https://github.com/Amey-Thakur)
|
| 8 |
+
Sarvesh Talele (https://github.com/sarveshtalele)
|
| 9 |
+
Repository : https://github.com/Amey-Thakur/LLM-KNOWLEDGE-LIFECYCLE
|
| 10 |
+
Release Date: August 16, 2026
|
| 11 |
+
License : CC BY 4.0
|
| 12 |
+
=========================================================================== -->
|
| 13 |
+
<html lang="en">
|
| 14 |
+
<head>
|
| 15 |
+
<meta charset="utf-8">
|
| 16 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 17 |
+
<title>Not found · LLM Knowledge Lifecycle</title>
|
| 18 |
+
<link rel="stylesheet" href="style.css">
|
| 19 |
+
<style>
|
| 20 |
+
.lost { text-align: center; padding: 3rem 0 1rem; }
|
| 21 |
+
.lost h1 { font-size: 1.7rem; margin-bottom: .6rem; }
|
| 22 |
+
.lost .code { font-size: 3.4rem; font-weight: 600; color: var(--accent); line-height: 1; }
|
| 23 |
+
.lost p { max-width: 34rem; margin: .8rem auto; color: var(--muted); }
|
| 24 |
+
.lost .back { display: inline-block; margin-top: 1.4rem; padding: .55rem 1.4rem;
|
| 25 |
+
background: var(--accent); color: #fff; border-radius: 7px; text-decoration: none; }
|
| 26 |
+
.lost .back:hover { background: #16406f; }
|
| 27 |
+
</style>
|
| 28 |
+
</head>
|
| 29 |
+
<body>
|
| 30 |
+
|
| 31 |
+
<div class="stagebar" title="The five lifecycle stages">
|
| 32 |
+
<span class="s1">Acquire</span><span class="s2">Store</span><span class="s3">Retrieve</span><span class="s4">Update</span><span class="s5">Forget</span>
|
| 33 |
+
</div>
|
| 34 |
+
|
| 35 |
+
<div class="lost">
|
| 36 |
+
<p class="code">404</p>
|
| 37 |
+
<h1>Retrieval failed</h1>
|
| 38 |
+
<p>
|
| 39 |
+
Nothing is stored at this address. The rest of the demonstration measures what
|
| 40 |
+
happens when retrieval succeeds and the model ignores what it found, which is
|
| 41 |
+
the more interesting failure.
|
| 42 |
+
</p>
|
| 43 |
+
<a class="back" href="./">Go to the probe</a>
|
| 44 |
+
</div>
|
| 45 |
+
|
| 46 |
+
<footer>
|
| 47 |
+
<p class="foot-links">
|
| 48 |
+
<a href="https://github.com/Amey-Thakur/LLM-KNOWLEDGE-LIFECYCLE">Paper repository</a>
|
| 49 |
+
· <a href="https://amey-thakur.github.io">Amey's Arc</a>
|
| 50 |
+
</p>
|
| 51 |
+
</footer>
|
| 52 |
+
|
| 53 |
+
</body>
|
| 54 |
+
</html>
|
social-preview.png
CHANGED
|
|
style.css
CHANGED
|
@@ -37,7 +37,7 @@
|
|
| 37 |
body {
|
| 38 |
margin: 0 auto;
|
| 39 |
padding: 3rem 1.5rem 4.5rem;
|
| 40 |
-
max-width:
|
| 41 |
font: 16px/1.55 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 42 |
color: var(--ink);
|
| 43 |
background:
|
|
@@ -305,8 +305,10 @@ body { line-height: 1.65; }
|
|
| 305 |
.reading,
|
| 306 |
#guide p,
|
| 307 |
.narrative,
|
| 308 |
-
.note
|
| 309 |
-
.alert
|
|
|
|
|
|
|
| 310 |
.subtitle { max-width: 44rem; }
|
| 311 |
|
| 312 |
.lede { margin-bottom: 1.6rem; font-size: 1rem; }
|
|
|
|
| 37 |
body {
|
| 38 |
margin: 0 auto;
|
| 39 |
padding: 3rem 1.5rem 4.5rem;
|
| 40 |
+
max-width: 54rem;
|
| 41 |
font: 16px/1.55 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 42 |
color: var(--ink);
|
| 43 |
background:
|
|
|
|
| 305 |
.reading,
|
| 306 |
#guide p,
|
| 307 |
.narrative,
|
| 308 |
+
.note,
|
| 309 |
+
.alert,
|
| 310 |
+
.glossary { max-width: none; }
|
| 311 |
+
.alert { line-height: 1.6; }
|
| 312 |
.subtitle { max-width: 44rem; }
|
| 313 |
|
| 314 |
.lede { margin-bottom: 1.6rem; font-size: 1rem; }
|