README / index.html
ChipCraftX's picture
Replace default index.html with org card content
b417097 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChipCraftX</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.6;
color: #1f2937;
max-width: 720px;
margin: 0 auto;
padding: 2em 1em;
}
h2 { color: #111827; margin-top: 1.5em; }
p { margin: 0.75em 0; }
.tagline { color: #4b5563; font-size: 1.05em; }
table { width: 100%; border-collapse: collapse; margin: 1em 0; }
th, td { padding: 0.5em 0.75em; text-align: left; border-bottom: 1px solid #e5e7eb; }
th { font-weight: 600; font-size: 0.9em; color: #6b7280; }
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }
.stats { display: flex; gap: 2em; margin: 1em 0; }
.stat { text-align: center; }
.stat-value { font-size: 1.5em; font-weight: 700; color: #111827; }
.stat-label { font-size: 0.85em; color: #6b7280; }
.links { margin-top: 1em; }
.links a { margin-right: 1.5em; }
</style>
</head>
<body>
<h2>About</h2>
<p class="tagline">ChipCraftX is an AI-powered platform that converts natural language specifications into verified, synthesizable hardware descriptions. The platform combines fine-tuned local models with automated EDA validation to achieve near-perfect scores on standard RTL benchmarks.</p>
<h2>Benchmark Highlights</h2>
<div class="stats">
<div class="stat">
<div class="stat-value">36.5%</div>
<div class="stat-label">VerilogEval-Human<br>(standalone, 7B)</div>
</div>
<div class="stat">
<div class="stat-value">98.7%</div>
<div class="stat-label">VerilogEval-Human<br>(hybrid pipeline, 154/156)</div>
</div>
</div>
<h2>Models</h2>
<table>
<tr><th>Model</th><th>Description</th></tr>
<tr>
<td><a href="https://huggingface.co/chipcraftx-io/chipcraftx-rtlgen-7b">chipcraftx-rtlgen-7b</a></td>
<td>Local RTL generation engine (7B, safetensors)</td>
</tr>
<tr>
<td><a href="https://huggingface.co/chipcraftx-io/chipcraftx-rtlgen-7b-GGUF">chipcraftx-rtlgen-7b-GGUF</a></td>
<td>Quantized GGUF versions for Ollama and llama.cpp</td>
</tr>
</table>
<h2>Links</h2>
<div class="links">
<a href="https://chipcraftx.io">chipcraftx.io</a>
<a href="https://x.com/ChipCraftX">@ChipCraftX</a>
</div>
</body>
</html>