Spaces:
Running
Running
File size: 6,635 Bytes
04b4756 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #0a0a0f;
color: #c9d1d9;
min-height: 100vh;
padding: 2rem;
line-height: 1.6;
}
.container {
max-width: 720px;
margin: 0 auto;
}
.header {
display: flex;
align-items: center;
gap: 1.5rem;
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid #1a1a2e;
}
.brain-gif {
width: 80px;
height: 80px;
border-radius: 50%;
border: 2px solid #58a6ff;
}
.header-text h1 {
font-size: 1.8rem;
font-weight: 700;
color: #e6edf3;
margin-bottom: 0.2rem;
}
.header-text .subtitle {
color: #58a6ff;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
}
.badges {
display: flex;
gap: 0.5rem;
margin-top: 0.5rem;
flex-wrap: wrap;
}
.badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.25rem 0.6rem;
background: #161b22;
border: 1px solid #30363d;
border-radius: 6px;
color: #8b949e;
font-size: 0.78rem;
text-decoration: none;
transition: border-color 0.2s;
}
.badge:hover {
border-color: #58a6ff;
color: #c9d1d9;
}
.section {
margin-bottom: 2rem;
}
.section h2 {
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
font-weight: 500;
color: #58a6ff;
margin-bottom: 1rem;
letter-spacing: 0.05em;
}
.section h2::before {
content: '$ ';
color: #484f58;
}
p {
color: #8b949e;
margin-bottom: 1rem;
font-size: 0.95rem;
}
.skills-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.skill-card {
padding: 1rem;
background: #0d1117;
border: 1px solid #1a1a2e;
border-radius: 8px;
transition: border-color 0.2s;
}
.skill-card:hover {
border-color: #30363d;
}
.skill-card h3 {
font-size: 0.85rem;
color: #e6edf3;
margin-bottom: 0.4rem;
}
.skill-card .tags {
font-family: 'JetBrains Mono', monospace;
font-size: 0.72rem;
color: #484f58;
}
.tech-row {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 0.5rem;
}
.tech-tag {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
padding: 0.2rem 0.5rem;
background: #161b22;
border: 1px solid #21262d;
border-radius: 4px;
color: #7ee787;
}
.focus-list {
list-style: none;
}
.focus-list li {
padding: 0.5rem 0;
border-bottom: 1px solid #0d1117;
font-size: 0.9rem;
color: #8b949e;
}
.focus-list li:last-child {
border-bottom: none;
}
.focus-list li strong {
color: #c9d1d9;
}
.footer {
margin-top: 3rem;
padding-top: 1rem;
border-top: 1px solid #1a1a2e;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: #30363d;
text-align: center;
}
@media (max-width: 600px) {
.skills-grid { grid-template-columns: 1fr; }
.header { flex-direction: column; text-align: center; }
body { padding: 1rem; }
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img class="brain-gif" src="https://user-images.githubusercontent.com/25584861/137609321-0e4265a3-d17d-45f4-ba20-c23ce8bceb5c.gif" alt="brain"/>
<div class="header-text">
<h1>Neurologist</h1>
<div class="subtitle">gradient descent, from ring 0.</div>
<div class="badges">
<a class="badge" href="https://github.com/Neurologist" target="_blank">🛠 GitHub</a>
<a class="badge" href="https://x.com/CryptCanvasArt" target="_blank">𝕏 @CryptCanvasArt</a>
<span class="badge">📍 Los Angeles</span>
</div>
</div>
</div>
<div class="section">
<h2>about</h2>
<p>AI/ML engineer and systems programmer working across the full stack — from PCIe/DMA hardware interfaces to transformer inference and diffusion pipelines. VFX background. I build things that think, then make them run fast on real hardware.</p>
</div>
<div class="section">
<h2>focus</h2>
<div class="skills-grid">
<div class="skill-card">
<h3>🧠 LLM Inference</h3>
<div class="tags">vLLM · llama.cpp · CUDA kernels · KV-cache optimization · speculative decoding</div>
</div>
<div class="skill-card">
<h3>🎨 Diffusion Models</h3>
<div class="tags">SDXL · ComfyUI pipelines · LoRA training · VFX integration</div>
</div>
<div class="skill-card">
<h3>🔧 Systems</h3>
<div class="tags">DMA/PCIe · memory-mapped I/O · kernel modules · WireGuard mesh</div>
</div>
<div class="skill-card">
<h3>🤖 Multi-Agent</h3>
<div class="tags">AutoGen · LangChain · tool-calling · structured output · edge deployment</div>
</div>
</div>
</div>
<div class="section">
<h2>stack</h2>
<div class="tech-row">
<span class="tech-tag">Python</span>
<span class="tech-tag">C++</span>
<span class="tech-tag">Rust</span>
<span class="tech-tag">CUDA</span>
<span class="tech-tag">PyTorch</span>
<span class="tech-tag">Transformers</span>
<span class="tech-tag">vLLM</span>
<span class="tech-tag">TensorRT</span>
<span class="tech-tag">ONNX</span>
<span class="tech-tag">ComfyUI</span>
<span class="tech-tag">Docker</span>
<span class="tech-tag">Linux</span>
</div>
</div>
<div class="section">
<h2>currently</h2>
<ul class="focus-list">
<li><strong>neurologist-7b-instruct</strong> — Fine-tuned Llama for technical reasoning and code generation</li>
<li><strong>sdxl-vfx-cinematic-lora</strong> — LoRA trained on VFX reference frames for cinematic generation</li>
<li><strong>Edge inference</strong> — Sub-200ms serving on consumer hardware (9950X + RTX)</li>
<li><strong>Homelab mesh</strong> — 4-node WireGuard cluster for distributed inference and automation</li>
</ul>
</div>
<div class="footer">building things that think · los angeles</div>
</div>
</body>
</html> |