ppt-pentagram.html 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1920">
  6. <title>GLM-4.7 Coding Benchmark - Pentagram Style</title>
  7. <style>
  8. * { margin: 0; padding: 0; box-sizing: border-box; }
  9. body {
  10. width: 1920px;
  11. height: 1080px;
  12. overflow: hidden;
  13. margin: 0;
  14. background: #FFFFFF;
  15. font-family: 'Helvetica Neue', Arial, sans-serif;
  16. color: #111;
  17. position: relative;
  18. }
  19. /* Top black bar */
  20. .top-bar {
  21. position: absolute;
  22. top: 0;
  23. left: 0;
  24. right: 0;
  25. height: 64px;
  26. background: #111;
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. padding: 0 80px;
  31. z-index: 10;
  32. }
  33. .top-label {
  34. font-size: 12px;
  35. font-weight: 700;
  36. letter-spacing: 3px;
  37. text-transform: uppercase;
  38. color: #fff;
  39. }
  40. .top-label .red { color: #E63946; }
  41. .top-right {
  42. font-size: 11px;
  43. font-weight: 700;
  44. letter-spacing: 2px;
  45. text-transform: uppercase;
  46. color: #E63946;
  47. }
  48. /* Grid lines */
  49. .grid-line-v {
  50. position: absolute;
  51. top: 64px;
  52. bottom: 64px;
  53. width: 1px;
  54. background: #000;
  55. opacity: 0.05;
  56. }
  57. .grid-line-h {
  58. position: absolute;
  59. left: 80px;
  60. right: 80px;
  61. height: 1px;
  62. background: #000;
  63. opacity: 0.05;
  64. }
  65. /* Left column — hero number + model info */
  66. .left-col {
  67. position: absolute;
  68. left: 80px;
  69. top: 104px;
  70. width: 480px;
  71. }
  72. .model-tag {
  73. font-size: 11px;
  74. font-weight: 700;
  75. letter-spacing: 3px;
  76. text-transform: uppercase;
  77. color: #999;
  78. margin-bottom: 8px;
  79. }
  80. .model-name {
  81. font-size: 48px;
  82. font-weight: 900;
  83. color: #111;
  84. line-height: 1;
  85. letter-spacing: -2px;
  86. }
  87. .model-name .version { color: #E63946; }
  88. .hero-number {
  89. font-size: 200px;
  90. font-weight: 900;
  91. line-height: 0.85;
  92. letter-spacing: -10px;
  93. color: #111;
  94. margin-top: 24px;
  95. }
  96. .hero-number .decimal { color: #E63946; }
  97. .hero-context {
  98. font-size: 13px;
  99. font-weight: 500;
  100. color: #999;
  101. letter-spacing: 1px;
  102. text-transform: uppercase;
  103. margin-top: 8px;
  104. }
  105. .key-message {
  106. font-size: 16px;
  107. font-weight: 400;
  108. line-height: 1.6;
  109. color: #666;
  110. margin-top: 32px;
  111. max-width: 400px;
  112. }
  113. .key-message strong {
  114. color: #111;
  115. font-weight: 700;
  116. }
  117. .open-badge {
  118. display: inline-flex;
  119. align-items: center;
  120. gap: 8px;
  121. margin-top: 24px;
  122. padding: 8px 16px;
  123. border: 2px solid #E63946;
  124. font-size: 11px;
  125. font-weight: 700;
  126. letter-spacing: 2px;
  127. text-transform: uppercase;
  128. color: #E63946;
  129. }
  130. /* Right area — 3 benchmark columns */
  131. .data-area {
  132. position: absolute;
  133. left: 620px;
  134. top: 104px;
  135. right: 80px;
  136. bottom: 64px;
  137. display: flex;
  138. gap: 0;
  139. }
  140. .bench-col {
  141. flex: 1;
  142. padding: 0 32px;
  143. border-left: 1px solid #E8E8E8;
  144. display: flex;
  145. flex-direction: column;
  146. }
  147. .bench-col:first-child {
  148. padding-left: 0;
  149. border-left: none;
  150. }
  151. .bench-title {
  152. font-size: 13px;
  153. font-weight: 700;
  154. letter-spacing: 2px;
  155. text-transform: uppercase;
  156. color: #111;
  157. margin-bottom: 4px;
  158. }
  159. .bench-type {
  160. font-size: 11px;
  161. font-weight: 400;
  162. color: #BBB;
  163. margin-bottom: 64px;
  164. }
  165. /* Hero score per column */
  166. .bench-hero {
  167. font-size: 80px;
  168. font-weight: 900;
  169. color: #E63946;
  170. letter-spacing: -3px;
  171. line-height: 1;
  172. margin-bottom: 64px;
  173. }
  174. /* Horizontal bar chart */
  175. .bar-group {
  176. display: flex;
  177. flex-direction: column;
  178. gap: 24px;
  179. }
  180. .bar-row {
  181. display: flex;
  182. align-items: center;
  183. gap: 16px;
  184. }
  185. .bar-label {
  186. font-size: 13px;
  187. font-weight: 600;
  188. color: #888;
  189. width: 90px;
  190. flex-shrink: 0;
  191. text-align: right;
  192. }
  193. .bar-label.highlight {
  194. color: #111;
  195. font-weight: 700;
  196. }
  197. .bar-track {
  198. flex: 1;
  199. height: 56px;
  200. background: #F5F5F5;
  201. position: relative;
  202. }
  203. .bar-fill {
  204. height: 100%;
  205. display: flex;
  206. align-items: center;
  207. justify-content: flex-end;
  208. padding-right: 14px;
  209. }
  210. .bar-fill.base {
  211. background: #E0E0E0;
  212. }
  213. .bar-fill.dark {
  214. background: #111;
  215. }
  216. .bar-fill.winner {
  217. background: #E63946;
  218. }
  219. .bar-value {
  220. font-size: 15px;
  221. font-weight: 700;
  222. color: #fff;
  223. }
  224. .bar-fill.base .bar-value {
  225. color: #888;
  226. }
  227. /* Bottom bar */
  228. .bottom-bar {
  229. position: absolute;
  230. bottom: 0;
  231. left: 0;
  232. right: 0;
  233. height: 64px;
  234. background: #111;
  235. display: flex;
  236. align-items: center;
  237. justify-content: space-between;
  238. padding: 0 80px;
  239. z-index: 10;
  240. }
  241. .bottom-left {
  242. display: flex;
  243. align-items: center;
  244. gap: 24px;
  245. }
  246. .bottom-logo {
  247. font-size: 14px;
  248. font-weight: 900;
  249. color: #fff;
  250. letter-spacing: 1px;
  251. }
  252. .bottom-divider {
  253. width: 1px;
  254. height: 20px;
  255. background: #444;
  256. }
  257. .bottom-note {
  258. font-size: 11px;
  259. font-weight: 400;
  260. color: #666;
  261. }
  262. .bottom-right-text {
  263. font-size: 11px;
  264. font-weight: 700;
  265. letter-spacing: 2px;
  266. text-transform: uppercase;
  267. color: #E63946;
  268. }
  269. /* Delta label */
  270. .delta {
  271. font-size: 12px;
  272. font-weight: 700;
  273. color: #E63946;
  274. letter-spacing: 1px;
  275. text-transform: uppercase;
  276. margin-top: 24px;
  277. padding-left: 106px;
  278. }
  279. /* Bottom summary row */
  280. .summary-row {
  281. position: absolute;
  282. bottom: 96px;
  283. left: 620px;
  284. right: 80px;
  285. display: flex;
  286. border-top: 1px solid #E8E8E8;
  287. padding-top: 24px;
  288. }
  289. .summary-item {
  290. flex: 1;
  291. padding: 0 32px;
  292. }
  293. .summary-item:first-child {
  294. padding-left: 0;
  295. }
  296. .summary-num {
  297. font-size: 32px;
  298. font-weight: 900;
  299. color: #111;
  300. letter-spacing: -1px;
  301. line-height: 1;
  302. }
  303. .summary-num .red { color: #E63946; }
  304. .summary-desc {
  305. font-size: 11px;
  306. font-weight: 500;
  307. color: #999;
  308. letter-spacing: 1px;
  309. text-transform: uppercase;
  310. margin-top: 8px;
  311. }
  312. /* Winner markers */
  313. .winner-dot {
  314. position: absolute;
  315. right: -8px;
  316. top: 50%;
  317. transform: translateY(-50%);
  318. width: 6px;
  319. height: 6px;
  320. border-radius: 50%;
  321. background: #E63946;
  322. }
  323. </style>
  324. </head>
  325. <body>
  326. <!-- Top bar -->
  327. <div class="top-bar">
  328. <span class="top-label">Benchmark Report <span class="red">/</span> 2025 Coding Performance</span>
  329. <span class="top-right">Open-Source SOTA</span>
  330. </div>
  331. <!-- Grid lines -->
  332. <div class="grid-line-v" style="left: 80px;"></div>
  333. <div class="grid-line-v" style="left: 620px;"></div>
  334. <div class="grid-line-v" style="right: 80px;"></div>
  335. <div class="grid-line-h" style="top: 104px;"></div>
  336. <!-- Left column -->
  337. <div class="left-col">
  338. <div class="model-tag">Open-Source Model</div>
  339. <div class="model-name">GLM-<span class="version">4.7</span></div>
  340. <div class="hero-number">95<span class="decimal">.</span>7</div>
  341. <div class="hero-context">AIME 2025 Score</div>
  342. <div class="key-message">
  343. <strong>First open-source model to achieve SOTA</strong> across all three major coding benchmarks, surpassing GPT-4o and Claude 3.5.
  344. </div>
  345. <div class="open-badge">
  346. <svg width="14" height="14" viewBox="0 0 14 14" fill="none">
  347. <circle cx="7" cy="7" r="6" stroke="#E63946" stroke-width="1.5"/>
  348. <circle cx="7" cy="7" r="2.5" fill="#E63946"/>
  349. </svg>
  350. Open Source
  351. </div>
  352. </div>
  353. <!-- Data columns -->
  354. <div class="data-area">
  355. <!-- AIME 2025 -->
  356. <div class="bench-col">
  357. <div class="bench-title">AIME 2025</div>
  358. <div class="bench-type">Mathematical Reasoning</div>
  359. <div class="bench-hero">95.7</div>
  360. <div class="bar-group">
  361. <div class="bar-row">
  362. <span class="bar-label highlight">GLM-4.7</span>
  363. <div class="bar-track">
  364. <div class="bar-fill winner" style="width: 95.7%;">
  365. <span class="bar-value">95.7</span>
  366. </div>
  367. </div>
  368. </div>
  369. <div class="bar-row">
  370. <span class="bar-label">Claude 3.5</span>
  371. <div class="bar-track">
  372. <div class="bar-fill dark" style="width: 88.2%;">
  373. <span class="bar-value">88.2</span>
  374. </div>
  375. </div>
  376. </div>
  377. <div class="bar-row">
  378. <span class="bar-label">GPT-4o</span>
  379. <div class="bar-track">
  380. <div class="bar-fill base" style="width: 83.6%;">
  381. <span class="bar-value">83.6</span>
  382. </div>
  383. </div>
  384. </div>
  385. </div>
  386. <div class="delta">+7.5 vs closed-source best</div>
  387. </div>
  388. <!-- SWE-bench -->
  389. <div class="bench-col">
  390. <div class="bench-title">SWE-bench Verified</div>
  391. <div class="bench-type">Software Engineering</div>
  392. <div class="bench-hero">73.8</div>
  393. <div class="bar-group">
  394. <div class="bar-row">
  395. <span class="bar-label highlight">GLM-4.7</span>
  396. <div class="bar-track">
  397. <div class="bar-fill winner" style="width: 73.8%;">
  398. <span class="bar-value">73.8%</span>
  399. </div>
  400. </div>
  401. </div>
  402. <div class="bar-row">
  403. <span class="bar-label">Claude 3.5</span>
  404. <div class="bar-track">
  405. <div class="bar-fill dark" style="width: 53.3%;">
  406. <span class="bar-value">53.3%</span>
  407. </div>
  408. </div>
  409. </div>
  410. <div class="bar-row">
  411. <span class="bar-label">GPT-4o</span>
  412. <div class="bar-track">
  413. <div class="bar-fill base" style="width: 48.2%;">
  414. <span class="bar-value">48.2%</span>
  415. </div>
  416. </div>
  417. </div>
  418. </div>
  419. <div class="delta">+20.5 vs closed-source best</div>
  420. </div>
  421. <!-- Tau-bench -->
  422. <div class="bench-col">
  423. <div class="bench-title">&tau;&sup2;-Bench</div>
  424. <div class="bench-type">Agent Task Completion</div>
  425. <div class="bench-hero">87.4</div>
  426. <div class="bar-group">
  427. <div class="bar-row">
  428. <span class="bar-label highlight">GLM-4.7</span>
  429. <div class="bar-track">
  430. <div class="bar-fill winner" style="width: 87.4%;">
  431. <span class="bar-value">87.4</span>
  432. </div>
  433. </div>
  434. </div>
  435. <div class="bar-row">
  436. <span class="bar-label">Claude 3.5</span>
  437. <div class="bar-track">
  438. <div class="bar-fill dark" style="width: 78.9%;">
  439. <span class="bar-value">78.9</span>
  440. </div>
  441. </div>
  442. </div>
  443. <div class="bar-row">
  444. <span class="bar-label">GPT-4o</span>
  445. <div class="bar-track">
  446. <div class="bar-fill base" style="width: 71.5%;">
  447. <span class="bar-value">71.5</span>
  448. </div>
  449. </div>
  450. </div>
  451. </div>
  452. <div class="delta">+8.5 vs closed-source best</div>
  453. </div>
  454. </div>
  455. <!-- Summary row -->
  456. <div class="summary-row">
  457. <div class="summary-item">
  458. <div class="summary-num"><span class="red">3</span>/3</div>
  459. <div class="summary-desc">Benchmarks Won</div>
  460. </div>
  461. <div class="summary-item">
  462. <div class="summary-num"><span class="red">#1</span></div>
  463. <div class="summary-desc">Open-Source Ranking</div>
  464. </div>
  465. <div class="summary-item">
  466. <div class="summary-num">12<span class="red">.</span>2<span style="font-size:18px;color:#999;">avg</span></div>
  467. <div class="summary-desc">Points Above Runner-Up</div>
  468. </div>
  469. </div>
  470. <!-- Bottom bar -->
  471. <div class="bottom-bar">
  472. <div class="bottom-left">
  473. <span class="bottom-logo">ZHIPU AI</span>
  474. <div class="bottom-divider"></div>
  475. <span class="bottom-note">Benchmark data sourced from official evaluation reports, 2025</span>
  476. </div>
  477. <span class="bottom-right-text">Open-Source SOTA</span>
  478. </div>
  479. </body>
  480. </html>