Thump604 commited on
Commit
4b7b699
·
verified ·
1 Parent(s): a0050ed

Upload index.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +39 -18
index.html CHANGED
@@ -1,19 +1,40 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>Persistent Session-State Continuity for Local Inference</title>
7
+ <style>
8
+ * { margin: 0; padding: 0; box-sizing: border-box; }
9
+ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background: #f8f9fa; color: #1a1a2e; }
10
+ header { background: #1a2e1a; color: #fff; padding: 2rem; text-align: center; }
11
+ header h1 { font-size: 1.6rem; margin-bottom: 0.5rem; }
12
+ header p { opacity: 0.8; font-size: 0.95rem; max-width: 700px; margin: 0 auto; line-height: 1.5; }
13
+ .links { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
14
+ .links a { color: #a8ead8; text-decoration: none; font-size: 0.9rem; padding: 0.4rem 0.8rem; border: 1px solid #a8ead8; border-radius: 4px; }
15
+ .links a:hover { background: rgba(168,234,216,0.15); }
16
+ .pdf-container { width: 100%; max-width: 900px; margin: 2rem auto; padding: 0 1rem; }
17
+ .pdf-container iframe { width: 100%; height: 85vh; border: 1px solid #ddd; border-radius: 6px; background: #fff; }
18
+ .download { text-align: center; margin: 1rem 0 2rem; }
19
+ .download a { color: #1a1a2e; font-weight: 500; }
20
+ </style>
21
+ </head>
22
+ <body>
23
+ <header>
24
+ <h1>Persistent Session-State Continuity for Local Inference</h1>
25
+ <p>Checkpoint, kill, restore, continue. Exact-fidelity session recovery for large language models on Apple Silicon unified memory.</p>
26
+ <div class="links">
27
+ <a href="persistent-session-state-continuity.pdf">PDF</a>
28
+ <a href="persistent-session-state-continuity.tex">LaTeX source</a>
29
+ <a href="https://doi.org/10.5281/zenodo.19560698">Zenodo DOI</a>
30
+ <a href="https://github.com/Thump604">GitHub</a>
31
+ </div>
32
+ </header>
33
+ <div class="pdf-container">
34
+ <iframe src="persistent-session-state-continuity.pdf" title="Persistent Session-State Continuity paper"></iframe>
35
+ </div>
36
+ <div class="download">
37
+ <a href="persistent-session-state-continuity.pdf" download>Download PDF</a> &middot; <a href="persistent-session-state-continuity.tex" download>Download LaTeX</a>
38
+ </div>
39
+ </body>
40
  </html>