-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
81 lines (76 loc) · 3.67 KB
/
Copy pathnews.html
File metadata and controls
81 lines (76 loc) · 3.67 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>News — FutureMLS Lab</title>
<meta name="description" content="News and updates from the Future Machine Learning & Systems (FutureMLS) Lab — releases, milestones, and publications." />
<link rel="icon" type="image/png" href="assets/img/logo.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Inter:wght@400;500;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!-- ===== Navigation ===== -->
<header class="nav" id="nav">
<div class="nav__inner container">
<a class="nav__brand" href="index.html" aria-label="FutureMLS Lab home">
<img src="assets/img/logo.png" alt="" class="nav__logo" />
<span class="nav__brand-text">FutureMLS Lab</span>
</a>
<nav class="nav__links" id="navLinks" aria-label="Primary">
<a href="index.html">Home</a>
<a href="news.html" aria-current="page">News</a>
<a href="https://github.com/FutureMLS-Lab" class="nav__ext" target="_blank" rel="noopener">GitHub</a>
</nav>
<button class="nav__toggle" id="navToggle" aria-label="Toggle menu" aria-expanded="false">
<span></span><span></span><span></span>
</button>
</div>
</header>
<main class="proj container">
<a class="proj__back" href="index.html#home">← Back to home</a>
<span class="eyebrow">News</span>
<h1 class="proj__title">News & Updates</h1>
<p class="proj__lead">
Releases, milestones, and publications from the Future Machine Learning & Systems Lab.
</p>
<ul class="news">
<li class="news__item reveal">
<span class="news__date">May 26, 2026</span>
<p class="news__text"><strong><a href="projects/oscar.html">OSCAR</a></strong> crosses 300 ★ on GitHub in its first week — thanks to the open-source community.</p>
</li>
<li class="news__item reveal">
<span class="news__date">May 19, 2026</span>
<p class="news__text"><strong><a href="projects/oscar.html">OSCAR</a></strong> released — 2-bit KV-cache serving at 2.28 effective bits/element with near-BF16 accuracy on Qwen3 and GLM-4.7.</p>
</li>
<li class="news__item reveal">
<span class="news__date">Apr 2026</span>
<p class="news__text"><strong><a href="projects/care.html">CARE</a></strong> presented at <strong>ICLR 2026</strong>: covariance-aware, rank-enhanced decomposition for Multi-Head Latent Attention.</p>
</li>
</ul>
</main>
<!-- ===== Footer ===== -->
<footer class="footer">
<div class="container footer__inner">
<div class="footer__brand">
<img src="assets/img/logo.png" alt="" class="footer__logo" />
<div>
<strong>FutureMLS Lab</strong>
<p>Future Machine Learning & Systems Lab</p>
</div>
</div>
<nav class="footer__links" aria-label="Footer">
<a href="index.html#about">About</a>
<a href="news.html">News</a>
<a href="index.html#team">Team</a>
<a href="index.html#projects">Projects</a>
<a href="https://github.com/FutureMLS-Lab" target="_blank" rel="noopener">GitHub</a>
</nav>
<p class="footer__copy">© <span id="year">2026</span> Future Machine Learning & Systems Lab. Founded by Zhongzhu Zhou.</p>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>