Knowledge Lifecycle
Browse files- index.html +4 -2
- social-preview.png +2 -2
- style.css +8 -0
index.html
CHANGED
|
@@ -30,8 +30,10 @@
|
|
| 30 |
<h1>LLM Knowledge Lifecycle</h1>
|
| 31 |
<p class="subtitle">
|
| 32 |
A model holds two memories: what it learned in training, and what you put in its prompt.
|
| 33 |
-
When they disagree, which one wins?
|
| 34 |
-
|
|
|
|
|
|
|
| 35 |
</p>
|
| 36 |
<p class="badges">
|
| 37 |
<a href="https://github.com/Amey-Thakur/LLM-KNOWLEDGE-LIFECYCLE"><img src="https://img.shields.io/badge/GitHub-LLM--KNOWLEDGE--LIFECYCLE-181717?logo=github" alt="GitHub repository"></a>
|
|
|
|
| 30 |
<h1>LLM Knowledge Lifecycle</h1>
|
| 31 |
<p class="subtitle">
|
| 32 |
A model holds two memories: what it learned in training, and what you put in its prompt.
|
| 33 |
+
When they disagree, which one wins?
|
| 34 |
+
</p>
|
| 35 |
+
<p class="paper-line">
|
| 36 |
+
Companion demonstration for <em>The Knowledge Lifecycle of Large Language Models</em>
|
| 37 |
</p>
|
| 38 |
<p class="badges">
|
| 39 |
<a href="https://github.com/Amey-Thakur/LLM-KNOWLEDGE-LIFECYCLE"><img src="https://img.shields.io/badge/GitHub-LLM--KNOWLEDGE--LIFECYCLE-181717?logo=github" alt="GitHub repository"></a>
|
social-preview.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
style.css
CHANGED
|
@@ -354,3 +354,11 @@ footer { margin-top: 4rem; padding-top: 2rem; }
|
|
| 354 |
after a mouse click. Replace it with the page's own focus treatment. */
|
| 355 |
.tab:focus { outline: none; }
|
| 356 |
.tab:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 354 |
after a mouse click. Replace it with the page's own focus treatment. */
|
| 355 |
.tab:focus { outline: none; }
|
| 356 |
.tab:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
|
| 357 |
+
|
| 358 |
+
/* the paper's title, given its own line so it is not buried mid-sentence */
|
| 359 |
+
.paper-line {
|
| 360 |
+
margin: .5rem auto 1.1rem;
|
| 361 |
+
font-size: .95rem;
|
| 362 |
+
color: var(--muted);
|
| 363 |
+
}
|
| 364 |
+
.paper-line em { color: var(--ink); font-style: italic; }
|