Spaces:
Running
Running
Update landing page for lattice-clock
Browse files- index.html +135 -19
index.html
CHANGED
|
@@ -1,19 +1,135 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.0">
|
| 6 |
+
<title>⏱️ Lattice Clock — Artifact Virtual</title>
|
| 7 |
+
<style>
|
| 8 |
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 9 |
+
body {
|
| 10 |
+
background: #0a0a0a;
|
| 11 |
+
color: #e0e0e0;
|
| 12 |
+
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
| 13 |
+
line-height: 1.7;
|
| 14 |
+
min-height: 100vh;
|
| 15 |
+
}
|
| 16 |
+
.hero {
|
| 17 |
+
padding: 80px 40px 60px;
|
| 18 |
+
text-align: center;
|
| 19 |
+
background: linear-gradient(180deg, #0f0a15 0%, #0a0a0a 100%);
|
| 20 |
+
border-bottom: 1px solid #1a1525;
|
| 21 |
+
}
|
| 22 |
+
.hero h1 {
|
| 23 |
+
font-size: 2.8em;
|
| 24 |
+
color: #c9a0dc;
|
| 25 |
+
margin-bottom: 12px;
|
| 26 |
+
font-weight: 300;
|
| 27 |
+
letter-spacing: -0.02em;
|
| 28 |
+
}
|
| 29 |
+
.hero .subtitle {
|
| 30 |
+
font-size: 1.15em;
|
| 31 |
+
color: #8a7a9a;
|
| 32 |
+
max-width: 700px;
|
| 33 |
+
margin: 0 auto 30px;
|
| 34 |
+
font-style: italic;
|
| 35 |
+
}
|
| 36 |
+
.hero .meta {
|
| 37 |
+
font-size: 0.85em;
|
| 38 |
+
color: #5a4a6a;
|
| 39 |
+
}
|
| 40 |
+
.hero .meta a { color: #9a80aa; text-decoration: none; }
|
| 41 |
+
.hero .meta a:hover { color: #c9a0dc; }
|
| 42 |
+
.btn-group { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
|
| 43 |
+
.btn {
|
| 44 |
+
display: inline-block;
|
| 45 |
+
padding: 10px 24px;
|
| 46 |
+
background: #1a1525;
|
| 47 |
+
color: #c9a0dc;
|
| 48 |
+
text-decoration: none;
|
| 49 |
+
border-radius: 6px;
|
| 50 |
+
font-size: 0.9em;
|
| 51 |
+
border: 1px solid #2a1f35;
|
| 52 |
+
transition: all 0.2s;
|
| 53 |
+
}
|
| 54 |
+
.btn:hover { background: #2a1f35; border-color: #c9a0dc; }
|
| 55 |
+
.container { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
|
| 56 |
+
.section { margin-bottom: 48px; }
|
| 57 |
+
.section h2 {
|
| 58 |
+
font-size: 1.4em;
|
| 59 |
+
color: #c9a0dc;
|
| 60 |
+
margin-bottom: 20px;
|
| 61 |
+
padding-bottom: 8px;
|
| 62 |
+
border-bottom: 1px solid #1a1525;
|
| 63 |
+
font-weight: 400;
|
| 64 |
+
}
|
| 65 |
+
.desc-block {
|
| 66 |
+
color: #9a8aaa;
|
| 67 |
+
font-size: 0.95em;
|
| 68 |
+
max-width: 800px;
|
| 69 |
+
margin: 0 auto 40px;
|
| 70 |
+
padding: 0 24px;
|
| 71 |
+
}
|
| 72 |
+
.papers-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
|
| 73 |
+
.paper-card {
|
| 74 |
+
display: block;
|
| 75 |
+
padding: 16px 20px;
|
| 76 |
+
background: #0f0c14;
|
| 77 |
+
border: 1px solid #1a1525;
|
| 78 |
+
border-radius: 8px;
|
| 79 |
+
text-decoration: none;
|
| 80 |
+
color: inherit;
|
| 81 |
+
transition: all 0.2s;
|
| 82 |
+
}
|
| 83 |
+
a.paper-card:hover { border-color: #c9a0dc; background: #14101c; transform: translateY(-1px); }
|
| 84 |
+
.paper-title { color: #d4b8e0; font-weight: 500; margin-bottom: 4px; font-size: 0.95em; }
|
| 85 |
+
.paper-desc { color: #7a6a8a; font-size: 0.85em; }
|
| 86 |
+
.footer {
|
| 87 |
+
text-align: center;
|
| 88 |
+
padding: 40px 24px;
|
| 89 |
+
color: #3a2a4a;
|
| 90 |
+
font-size: 0.8em;
|
| 91 |
+
border-top: 1px solid #1a1525;
|
| 92 |
+
}
|
| 93 |
+
.footer a { color: #5a4a6a; text-decoration: none; }
|
| 94 |
+
.footer a:hover { color: #c9a0dc; }
|
| 95 |
+
@media (max-width: 600px) {
|
| 96 |
+
.hero { padding: 50px 20px 40px; }
|
| 97 |
+
.hero h1 { font-size: 2em; }
|
| 98 |
+
}
|
| 99 |
+
</style>
|
| 100 |
+
</head>
|
| 101 |
+
<body>
|
| 102 |
+
<div class="hero">
|
| 103 |
+
<h1>⏱️ Lattice Clock</h1>
|
| 104 |
+
<div class="subtitle">Discrete temporal quantization for neural architectures — the model during forward pass is timeless.</div>
|
| 105 |
+
<div class="meta">By <a href="https://huggingface.co/amuzetnoM">Artifact Virtual</a> — Ali Shakil & AVA</div>
|
| 106 |
+
<div class="btn-group"><a href="https://huggingface.co/datasets/amuzetnoM/lattice-clock" class="btn" target="_blank">📦 Dataset Repository</a><a href="https://huggingface.co/spaces/amuzetnoM/gladius-research" class="btn" target="_blank">⚔️ GLADIUS Research</a></div>
|
| 107 |
+
</div>
|
| 108 |
+
<div class="container">
|
| 109 |
+
<div class="desc-block">How should a neural network experience time? Not through external timestamps, but through intrinsic computation rhythms. The lattice clock is GLADIUS's temporal architecture — depth scales as heartbeat, not wall clock.</div>
|
| 110 |
+
|
| 111 |
+
<div class="section">
|
| 112 |
+
<h2>Papers</h2>
|
| 113 |
+
<div class="papers-grid">
|
| 114 |
+
<a href="https://huggingface.co/datasets/amuzetnoM/gladius-research/blob/main/ieee/lattice-clock-temporal-quantization.md" class="paper-card" target="_blank">
|
| 115 |
+
<div class="paper-title">Lattice Clock: Temporal Quantization (IEEE)</div>
|
| 116 |
+
<div class="paper-desc">Discrete temporal quantization for neural architectures</div>
|
| 117 |
+
</a>
|
| 118 |
+
<a href="https://huggingface.co/datasets/amuzetnoM/lattice-clock/blob/main/papers/lattice-clock-temporal-architecture.md" class="paper-card" target="_blank">
|
| 119 |
+
<div class="paper-title">Temporal Architecture</div>
|
| 120 |
+
<div class="paper-desc">Temporal tethering design — Ali & AVA</div>
|
| 121 |
+
</a>
|
| 122 |
+
<a href="https://huggingface.co/datasets/amuzetnoM/lattice-clock/blob/main/papers/lattice-clock-design.md" class="paper-card" target="_blank">
|
| 123 |
+
<div class="paper-title">Framework Design</div>
|
| 124 |
+
<div class="paper-desc">Ali's framework — model during forward pass = timeless</div>
|
| 125 |
+
</a></div>
|
| 126 |
+
</div>
|
| 127 |
+
</div>
|
| 128 |
+
<div class="footer">
|
| 129 |
+
<a href="https://artifactvirtual.substack.com">Substack</a> ·
|
| 130 |
+
<a href="https://huggingface.co/amuzetnoM">HuggingFace</a> ·
|
| 131 |
+
<a href="https://github.com/Artifact-Virtual">GitHub</a><br>
|
| 132 |
+
© 2026 Artifact Virtual. Research shared under CC-BY-4.0.
|
| 133 |
+
</div>
|
| 134 |
+
</body>
|
| 135 |
+
</html>
|