Spaces:
Running
Running
Replace default index.html with org card content
Browse files- index.html +68 -18
index.html
CHANGED
|
@@ -1,19 +1,69 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.0">
|
| 6 |
+
<title>ChipCraftX</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
font-family: system-ui, -apple-system, sans-serif;
|
| 10 |
+
line-height: 1.6;
|
| 11 |
+
color: #1f2937;
|
| 12 |
+
max-width: 720px;
|
| 13 |
+
margin: 0 auto;
|
| 14 |
+
padding: 2em 1em;
|
| 15 |
+
}
|
| 16 |
+
h2 { color: #111827; margin-top: 1.5em; }
|
| 17 |
+
p { margin: 0.75em 0; }
|
| 18 |
+
.tagline { color: #4b5563; font-size: 1.05em; }
|
| 19 |
+
table { width: 100%; border-collapse: collapse; margin: 1em 0; }
|
| 20 |
+
th, td { padding: 0.5em 0.75em; text-align: left; border-bottom: 1px solid #e5e7eb; }
|
| 21 |
+
th { font-weight: 600; font-size: 0.9em; color: #6b7280; }
|
| 22 |
+
a { color: #2563eb; text-decoration: none; }
|
| 23 |
+
a:hover { text-decoration: underline; }
|
| 24 |
+
.stats { display: flex; gap: 2em; margin: 1em 0; }
|
| 25 |
+
.stat { text-align: center; }
|
| 26 |
+
.stat-value { font-size: 1.5em; font-weight: 700; color: #111827; }
|
| 27 |
+
.stat-label { font-size: 0.85em; color: #6b7280; }
|
| 28 |
+
.links { margin-top: 1em; }
|
| 29 |
+
.links a { margin-right: 1.5em; }
|
| 30 |
+
</style>
|
| 31 |
+
</head>
|
| 32 |
+
<body>
|
| 33 |
+
|
| 34 |
+
<h2>About</h2>
|
| 35 |
+
<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>
|
| 36 |
+
|
| 37 |
+
<h2>Benchmark Highlights</h2>
|
| 38 |
+
<div class="stats">
|
| 39 |
+
<div class="stat">
|
| 40 |
+
<div class="stat-value">36.5%</div>
|
| 41 |
+
<div class="stat-label">VerilogEval-Human<br>(standalone, 7B)</div>
|
| 42 |
+
</div>
|
| 43 |
+
<div class="stat">
|
| 44 |
+
<div class="stat-value">98.7%</div>
|
| 45 |
+
<div class="stat-label">VerilogEval-Human<br>(hybrid pipeline, 154/156)</div>
|
| 46 |
+
</div>
|
| 47 |
+
</div>
|
| 48 |
+
|
| 49 |
+
<h2>Models</h2>
|
| 50 |
+
<table>
|
| 51 |
+
<tr><th>Model</th><th>Description</th></tr>
|
| 52 |
+
<tr>
|
| 53 |
+
<td><a href="https://huggingface.co/chipcraftx-io/chipcraftx-rtlgen-7b">chipcraftx-rtlgen-7b</a></td>
|
| 54 |
+
<td>Local RTL generation engine (7B, safetensors)</td>
|
| 55 |
+
</tr>
|
| 56 |
+
<tr>
|
| 57 |
+
<td><a href="https://huggingface.co/chipcraftx-io/chipcraftx-rtlgen-7b-GGUF">chipcraftx-rtlgen-7b-GGUF</a></td>
|
| 58 |
+
<td>Quantized GGUF versions for Ollama and llama.cpp</td>
|
| 59 |
+
</tr>
|
| 60 |
+
</table>
|
| 61 |
+
|
| 62 |
+
<h2>Links</h2>
|
| 63 |
+
<div class="links">
|
| 64 |
+
<a href="https://chipcraftx.io">chipcraftx.io</a>
|
| 65 |
+
<a href="https://x.com/ChipCraftX">@ChipCraftX</a>
|
| 66 |
+
</div>
|
| 67 |
+
|
| 68 |
+
</body>
|
| 69 |
</html>
|