ameythakur commited on
Commit
adcc863
·
verified ·
1 Parent(s): 0bb4443

Knowledge Lifecycle

Browse files
Files changed (3) hide show
  1. index.html +4 -2
  2. social-preview.png +2 -2
  3. 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? Companion demonstration for
34
- <em>The Knowledge Lifecycle of Large Language Models</em>.
 
 
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

  • SHA256: da0f3cf16246972c3667a6aad28de70f50b57a3d073b428b5831aae2a4c7c77e
  • Pointer size: 131 Bytes
  • Size of remote file: 117 kB

Git LFS Details

  • SHA256: 87892f3fe87cf0f1335b1a5486d55b00cc969903808fd17a15c5905f424026c4
  • Pointer size: 131 Bytes
  • Size of remote file: 120 kB
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; }