crpython commited on
Commit ·
e15f9ca
1
Parent(s): d750ef3
Add 5-min research walkthrough video to About page
Browse files12MB / 720p / H.264+AAC, tracked via git-lfs (added *.mp4 to
.gitattributes). Embedded as a controls-enabled <video> in a new
#walkthrough section between Overview and Performance, with
preload=metadata so first-load only fetches the manifest.
- .gitattributes +1 -0
- index.html +45 -0
- research.mp4 +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
index.html
CHANGED
|
@@ -445,6 +445,34 @@
|
|
| 445 |
}
|
| 446 |
.tagline em{font-style:italic;color:var(--accent)}
|
| 447 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 448 |
.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:22px 0 28px}
|
| 449 |
.stat{
|
| 450 |
border:1px solid var(--border);border-radius:12px;
|
|
@@ -606,6 +634,7 @@
|
|
| 606 |
<div class="about">
|
| 607 |
<div class="subnav">
|
| 608 |
<div class="subnav-inner" id="subnav">
|
|
|
|
| 609 |
<a href="#performance">Performance</a>
|
| 610 |
<a href="#recipe">Recipe</a>
|
| 611 |
<a href="#hardware">Hardware</a>
|
|
@@ -624,6 +653,22 @@
|
|
| 624 |
<p class="tagline">Beating an 8B Cisco specialist <em>at half the size.</em></p>
|
| 625 |
</section>
|
| 626 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 627 |
<section id="performance">
|
| 628 |
<h3>Performance</h3>
|
| 629 |
<h2>CTI-Bench, n=5, temp 0.3</h2>
|
|
|
|
| 445 |
}
|
| 446 |
.tagline em{font-style:italic;color:var(--accent)}
|
| 447 |
|
| 448 |
+
/* Research walkthrough video card */
|
| 449 |
+
.video-card{
|
| 450 |
+
border:1px solid var(--border);border-radius:14px;
|
| 451 |
+
background:var(--surface);
|
| 452 |
+
padding:6px 6px 14px;
|
| 453 |
+
margin:18px 0 12px;
|
| 454 |
+
box-shadow: 0 8px 32px rgba(0,0,0,0.32);
|
| 455 |
+
overflow:hidden;
|
| 456 |
+
}
|
| 457 |
+
.video-card video{
|
| 458 |
+
width:100%;height:auto;display:block;
|
| 459 |
+
border-radius:9px;
|
| 460 |
+
background:#000;
|
| 461 |
+
}
|
| 462 |
+
.video-card .vc-meta{
|
| 463 |
+
display:flex;align-items:center;justify-content:space-between;gap:12px;
|
| 464 |
+
padding:10px 10px 4px;
|
| 465 |
+
font-family:var(--font-mono);font-size:11.5px;color:var(--fg-4);
|
| 466 |
+
letter-spacing:.02em;
|
| 467 |
+
}
|
| 468 |
+
.video-card .vc-meta .vc-tag{
|
| 469 |
+
color:var(--accent);
|
| 470 |
+
background:var(--accent-soft);
|
| 471 |
+
border:1px solid var(--accent-border);
|
| 472 |
+
padding:3px 8px;border-radius:6px;
|
| 473 |
+
font-size:10.5px;letter-spacing:.06em;text-transform:uppercase;
|
| 474 |
+
}
|
| 475 |
+
|
| 476 |
.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:22px 0 28px}
|
| 477 |
.stat{
|
| 478 |
border:1px solid var(--border);border-radius:12px;
|
|
|
|
| 634 |
<div class="about">
|
| 635 |
<div class="subnav">
|
| 636 |
<div class="subnav-inner" id="subnav">
|
| 637 |
+
<a href="#walkthrough">Walkthrough</a>
|
| 638 |
<a href="#performance">Performance</a>
|
| 639 |
<a href="#recipe">Recipe</a>
|
| 640 |
<a href="#hardware">Hardware</a>
|
|
|
|
| 653 |
<p class="tagline">Beating an 8B Cisco specialist <em>at half the size.</em></p>
|
| 654 |
</section>
|
| 655 |
|
| 656 |
+
<section id="walkthrough">
|
| 657 |
+
<h3>Walkthrough</h3>
|
| 658 |
+
<h2>Research, in 5 minutes</h2>
|
| 659 |
+
<p>A walkthrough of the training methodology, AMD MI300X workflow, and the benchmark results — context for the numbers below.</p>
|
| 660 |
+
<div class="video-card">
|
| 661 |
+
<video controls preload="metadata" playsinline>
|
| 662 |
+
<source src="research.mp4" type="video/mp4" />
|
| 663 |
+
Your browser doesn't support inline video — <a href="research.mp4">download the file</a>.
|
| 664 |
+
</video>
|
| 665 |
+
<div class="vc-meta">
|
| 666 |
+
<span><span class="vc-tag">Video</span> AMD MI300X · Qwen3-4B fine-tune</span>
|
| 667 |
+
<span>5:33 · 720p</span>
|
| 668 |
+
</div>
|
| 669 |
+
</div>
|
| 670 |
+
</section>
|
| 671 |
+
|
| 672 |
<section id="performance">
|
| 673 |
<h3>Performance</h3>
|
| 674 |
<h2>CTI-Bench, n=5, temp 0.3</h2>
|
research.mp4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35a0405a44223f4d800f700bd5f03b0a5048f4310b73b8d5911e668a76c6cc81
|
| 3 |
+
size 12092926
|