ChipCraftX commited on
Commit
b417097
·
verified ·
1 Parent(s): 5e53af9

Replace default index.html with org card content

Browse files
Files changed (1) hide show
  1. index.html +68 -18
index.html CHANGED
@@ -1,19 +1,69 @@
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.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>