ppt-takram.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  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 - Takram Style</title>
  7. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Noto+Serif+SC:wght@300;400;500;600&display=swap" rel="stylesheet">
  8. <style>
  9. * { margin: 0; padding: 0; box-sizing: border-box; }
  10. body {
  11. width: 1920px;
  12. height: 1080px;
  13. overflow: hidden;
  14. margin: 0;
  15. background: #F5F0EB;
  16. font-family: 'Inter', sans-serif;
  17. color: #3A3A3A;
  18. position: relative;
  19. }
  20. /* Subtle background texture */
  21. body::before {
  22. content: '';
  23. position: absolute;
  24. top: 0; left: 0; right: 0; bottom: 0;
  25. background:
  26. radial-gradient(ellipse at 20% 50%, rgba(168, 181, 160, 0.08) 0%, transparent 60%),
  27. radial-gradient(ellipse at 80% 30%, rgba(200, 190, 175, 0.06) 0%, transparent 50%);
  28. pointer-events: none;
  29. }
  30. .layout {
  31. width: 100%;
  32. height: 100%;
  33. display: grid;
  34. grid-template-columns: 480px 1fr;
  35. grid-template-rows: 1fr;
  36. position: relative;
  37. z-index: 1;
  38. }
  39. /* Left panel */
  40. .left-panel {
  41. padding: 72px 48px 60px 72px;
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: space-between;
  45. border-right: 1px solid rgba(107, 143, 113, 0.15);
  46. }
  47. .left-top {}
  48. .category-label {
  49. font-size: 10px;
  50. font-weight: 500;
  51. letter-spacing: 3px;
  52. text-transform: uppercase;
  53. color: #6B8F71;
  54. margin-bottom: 32px;
  55. opacity: 0.8;
  56. }
  57. .title-jp {
  58. font-family: 'Noto Serif SC', serif;
  59. font-size: 42px;
  60. font-weight: 400;
  61. color: #2D3436;
  62. line-height: 1.4;
  63. margin-bottom: 16px;
  64. letter-spacing: 1px;
  65. }
  66. .title-en {
  67. font-size: 15px;
  68. font-weight: 300;
  69. color: #999999;
  70. line-height: 1.7;
  71. max-width: 340px;
  72. }
  73. .model-badge {
  74. display: inline-flex;
  75. align-items: center;
  76. gap: 8px;
  77. margin-top: 36px;
  78. padding: 10px 18px;
  79. background: rgba(107, 143, 113, 0.08);
  80. border: 1px solid rgba(107, 143, 113, 0.15);
  81. border-radius: 24px;
  82. }
  83. .model-badge-dot {
  84. width: 8px;
  85. height: 8px;
  86. border-radius: 50%;
  87. background: #6B8F71;
  88. }
  89. .model-badge-text {
  90. font-size: 12px;
  91. font-weight: 500;
  92. color: #6B8F71;
  93. letter-spacing: 1px;
  94. }
  95. /* Page indicator */
  96. .page-indicator {
  97. position: absolute;
  98. bottom: 40px;
  99. right: 72px;
  100. font-family: 'Inter', sans-serif;
  101. font-size: 10px;
  102. font-weight: 300;
  103. color: #C8C2B8;
  104. letter-spacing: 1px;
  105. }
  106. /* Key insight */
  107. .key-insight {
  108. background: rgba(255, 255, 255, 0.5);
  109. border-radius: 16px;
  110. padding: 24px 28px;
  111. border: 1px solid rgba(168, 181, 160, 0.2);
  112. }
  113. .key-insight-label {
  114. font-size: 10px;
  115. font-weight: 500;
  116. letter-spacing: 2px;
  117. text-transform: uppercase;
  118. color: #A8B5A0;
  119. margin-bottom: 10px;
  120. }
  121. .key-insight-text {
  122. font-family: 'Noto Serif SC', serif;
  123. font-size: 15px;
  124. font-weight: 400;
  125. color: #555555;
  126. line-height: 1.8;
  127. }
  128. .left-bottom {
  129. display: flex;
  130. align-items: center;
  131. gap: 12px;
  132. }
  133. .credit {
  134. font-size: 11px;
  135. font-weight: 400;
  136. color: #BBBBBB;
  137. letter-spacing: 0.5px;
  138. }
  139. /* Right panel - visualization */
  140. .right-panel {
  141. padding: 60px 72px 60px 60px;
  142. display: flex;
  143. flex-direction: column;
  144. position: relative;
  145. }
  146. .viz-header {
  147. display: flex;
  148. justify-content: space-between;
  149. align-items: flex-start;
  150. margin-bottom: 24px;
  151. }
  152. .viz-title {
  153. font-size: 13px;
  154. font-weight: 500;
  155. letter-spacing: 1.5px;
  156. text-transform: uppercase;
  157. color: #888888;
  158. }
  159. .legend {
  160. display: flex;
  161. gap: 20px;
  162. }
  163. .legend-item {
  164. display: flex;
  165. align-items: center;
  166. gap: 6px;
  167. }
  168. .legend-dot {
  169. width: 10px;
  170. height: 10px;
  171. border-radius: 50%;
  172. }
  173. .legend-dot.glm { background: #6B8F71; }
  174. .legend-dot.claude { background: #D4A574; }
  175. .legend-dot.gpt { background: #C8C2B8; }
  176. .legend-text {
  177. font-size: 11px;
  178. font-weight: 400;
  179. color: #999999;
  180. }
  181. /* SVG radar chart area */
  182. .radar-area {
  183. flex: 1;
  184. display: flex;
  185. align-items: center;
  186. justify-content: center;
  187. position: relative;
  188. }
  189. .radar-svg {
  190. filter: drop-shadow(0 4px 20px rgba(0,0,0,0.04));
  191. }
  192. /* Metric cards row */
  193. .metric-cards {
  194. display: grid;
  195. grid-template-columns: 1fr 1fr 1fr;
  196. gap: 20px;
  197. margin-top: 20px;
  198. }
  199. .m-card {
  200. background: rgba(255, 255, 255, 0.6);
  201. border-radius: 16px;
  202. padding: 24px 28px;
  203. border: 1px solid rgba(168, 181, 160, 0.15);
  204. position: relative;
  205. overflow: hidden;
  206. }
  207. .m-card::before {
  208. content: '';
  209. position: absolute;
  210. top: 0;
  211. left: 28px;
  212. width: 32px;
  213. height: 2px;
  214. background: #6B8F71;
  215. opacity: 0.4;
  216. border-radius: 1px;
  217. }
  218. .m-card-name {
  219. font-size: 11px;
  220. font-weight: 500;
  221. letter-spacing: 1.5px;
  222. text-transform: uppercase;
  223. color: #999999;
  224. margin-bottom: 4px;
  225. }
  226. .m-card-type {
  227. font-size: 11px;
  228. font-weight: 300;
  229. color: #BBBBBB;
  230. margin-bottom: 16px;
  231. }
  232. .m-card-value {
  233. font-size: 40px;
  234. font-weight: 300;
  235. color: #2D3436;
  236. letter-spacing: -1px;
  237. line-height: 1;
  238. }
  239. .m-card-value .unit {
  240. font-size: 18px;
  241. color: #6B8F71;
  242. font-weight: 400;
  243. }
  244. .m-card-delta {
  245. display: inline-flex;
  246. align-items: center;
  247. gap: 4px;
  248. margin-top: 10px;
  249. font-size: 12px;
  250. font-weight: 500;
  251. color: #7D9B72;
  252. background: rgba(168, 181, 160, 0.12);
  253. padding: 3px 10px;
  254. border-radius: 12px;
  255. }
  256. .m-card-delta svg {
  257. width: 10px;
  258. height: 10px;
  259. }
  260. .m-card-competitors {
  261. margin-top: 14px;
  262. display: flex;
  263. gap: 16px;
  264. }
  265. .comp-mini {
  266. font-size: 11px;
  267. font-weight: 400;
  268. color: #AAAAAA;
  269. }
  270. .comp-mini span {
  271. font-weight: 500;
  272. color: #888888;
  273. }
  274. </style>
  275. </head>
  276. <body>
  277. <div class="layout">
  278. <!-- Left panel -->
  279. <div class="left-panel">
  280. <div class="left-top">
  281. <div class="category-label">Benchmark Analysis</div>
  282. <div class="title-jp">GLM-4.7<br>Coding 能力突破</div>
  283. <div class="title-en">
  284. Open-source model achieves state-of-the-art performance across all major coding benchmarks for the first time.
  285. </div>
  286. <div class="model-badge">
  287. <div class="model-badge-dot"></div>
  288. <span class="model-badge-text">GLM-4.7 Open Source</span>
  289. </div>
  290. <div class="key-insight" style="margin-top: 40px;">
  291. <div class="key-insight-label">Key Finding</div>
  292. <div class="key-insight-text">
  293. 在三项核心编程基准测试中,GLM-4.7 均超越 GPT-4o 和 Claude 3.5,成为首个达到 SOTA 水平的开源模型。
  294. </div>
  295. </div>
  296. </div>
  297. <div class="left-bottom">
  298. <svg width="16" height="16" viewBox="0 0 16 16" fill="none">
  299. <rect x="1" y="1" width="14" height="14" rx="3" stroke="#BBBBBB" stroke-width="1"/>
  300. <path d="M5 8L7 10L11 6" stroke="#A8B5A0" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  301. </svg>
  302. <span class="credit">Data: Official benchmark evaluations, 2026</span>
  303. </div>
  304. </div>
  305. <!-- Right panel -->
  306. <div class="right-panel">
  307. <div class="viz-header">
  308. <div class="viz-title">Performance Comparison <span style="font-weight:300;color:#B0AAA0;font-size:10px;margin-left:8px;">— 03 benchmarks</span></div>
  309. <div class="legend">
  310. <div class="legend-item"><div class="legend-dot glm"></div><span class="legend-text">GLM-4.7</span></div>
  311. <div class="legend-item"><div class="legend-dot claude"></div><span class="legend-text">Claude 3.5</span></div>
  312. <div class="legend-item"><div class="legend-dot gpt"></div><span class="legend-text">GPT-4o</span></div>
  313. </div>
  314. </div>
  315. <!-- Radar chart SVG — art-piece treatment -->
  316. <div class="radar-area">
  317. <svg class="radar-svg" width="560" height="560" viewBox="0 0 560 560">
  318. <!-- Subtle background circle (like a lens/scope) -->
  319. <circle cx="280" cy="280" r="250" fill="none" stroke="#E8E4DC" stroke-width="0.3" opacity="0.5"/>
  320. <!-- Grid circles — hand-drawn feel with varied dash -->
  321. <circle cx="280" cy="280" r="220" fill="none" stroke="#DDD9D2" stroke-width="0.6" stroke-dasharray="2,6"/>
  322. <circle cx="280" cy="280" r="176" fill="none" stroke="#DDD9D2" stroke-width="0.5" stroke-dasharray="2,6"/>
  323. <circle cx="280" cy="280" r="132" fill="none" stroke="#DDD9D2" stroke-width="0.4" stroke-dasharray="2,6"/>
  324. <circle cx="280" cy="280" r="88" fill="none" stroke="#DDD9D2" stroke-width="0.4" stroke-dasharray="2,6"/>
  325. <circle cx="280" cy="280" r="44" fill="none" stroke="#DDD9D2" stroke-width="0.3" stroke-dasharray="2,6"/>
  326. <!-- Center point -->
  327. <circle cx="280" cy="280" r="2.5" fill="#6B8F71" opacity="0.4"/>
  328. <!-- Grid scale labels — positioned along axis -->
  329. <text x="288" y="62" font-family="Inter" font-size="9" fill="#C8C2B8" font-weight="300">100</text>
  330. <text x="288" y="106" font-family="Inter" font-size="9" fill="#C8C2B8" font-weight="300">80</text>
  331. <text x="288" y="150" font-family="Inter" font-size="9" fill="#C8C2B8" font-weight="300">60</text>
  332. <text x="288" y="194" font-family="Inter" font-size="9" fill="#C8C2B8" font-weight="300">40</text>
  333. <!-- Axis lines — delicate -->
  334. <line x1="280" y1="280" x2="280" y2="55" stroke="#D4CFC6" stroke-width="0.5"/>
  335. <line x1="280" y1="280" x2="475" y2="392" stroke="#D4CFC6" stroke-width="0.5"/>
  336. <line x1="280" y1="280" x2="85" y2="392" stroke="#D4CFC6" stroke-width="0.5"/>
  337. <!-- Axis endpoint markers -->
  338. <circle cx="280" cy="55" r="2" fill="none" stroke="#D4CFC6" stroke-width="0.6"/>
  339. <circle cx="475" cy="392" r="2" fill="none" stroke="#D4CFC6" stroke-width="0.6"/>
  340. <circle cx="85" cy="392" r="2" fill="none" stroke="#D4CFC6" stroke-width="0.6"/>
  341. <!-- Axis labels with index -->
  342. <text x="280" y="38" font-family="Inter" font-size="12" fill="#8A857D" font-weight="500" text-anchor="middle" letter-spacing="1.5">AIME 2025</text>
  343. <text x="280" y="28" font-family="Inter" font-size="7" fill="#B0AAA0" text-anchor="middle" letter-spacing="0.5">Mathematical Reasoning</text>
  344. <text x="492" y="408" font-family="Inter" font-size="12" fill="#8A857D" font-weight="500" text-anchor="start" letter-spacing="1.5">SWE-bench</text>
  345. <text x="492" y="422" font-family="Inter" font-size="7" fill="#B0AAA0" text-anchor="start" letter-spacing="0.5">Software Engineering</text>
  346. <text x="68" y="408" font-family="Inter" font-size="12" fill="#8A857D" font-weight="500" text-anchor="end" letter-spacing="1.5">&tau;&sup2;-Bench</text>
  347. <text x="68" y="422" font-family="Inter" font-size="7" fill="#B0AAA0" text-anchor="end" letter-spacing="0.5">Agent Tasks</text>
  348. <!-- GPT-4o polygon (lightest) -->
  349. <polygon
  350. points="280,96.1 371.8,333 143.8,358.7"
  351. fill="rgba(219,219,219,0.12)" stroke="#D4CFC6" stroke-width="1" stroke-dasharray="4,3"
  352. />
  353. <!-- Claude 3.5 polygon -->
  354. <polygon
  355. points="280,86 381.6,338.6 129.7,366.8"
  356. fill="rgba(212,165,116,0.08)" stroke="#D4A574" stroke-width="1.2"
  357. />
  358. <!-- GLM-4.7 polygon (prominent, sage green) -->
  359. <polygon
  360. points="280,69.5 420.6,361.2 113.5,376.2"
  361. fill="rgba(107,143,113,0.1)" stroke="#6B8F71" stroke-width="2"
  362. />
  363. <!-- Data points - GLM-4.7 (larger, prominent) -->
  364. <circle cx="280" cy="69.5" r="6" fill="#6B8F71" opacity="0.8"/>
  365. <circle cx="280" cy="69.5" r="10" fill="none" stroke="#6B8F71" stroke-width="0.6" opacity="0.3"/>
  366. <circle cx="420.6" cy="361.2" r="6" fill="#6B8F71" opacity="0.8"/>
  367. <circle cx="420.6" cy="361.2" r="10" fill="none" stroke="#6B8F71" stroke-width="0.6" opacity="0.3"/>
  368. <circle cx="113.5" cy="376.2" r="6" fill="#6B8F71" opacity="0.8"/>
  369. <circle cx="113.5" cy="376.2" r="10" fill="none" stroke="#6B8F71" stroke-width="0.6" opacity="0.3"/>
  370. <!-- Data points - Claude 3.5 -->
  371. <circle cx="280" cy="86" r="3.5" fill="#D4A574" opacity="0.7"/>
  372. <circle cx="381.6" cy="338.6" r="3.5" fill="#D4A574" opacity="0.7"/>
  373. <circle cx="129.7" cy="366.8" r="3.5" fill="#D4A574" opacity="0.7"/>
  374. <!-- Data points - GPT-4o -->
  375. <circle cx="280" cy="96.1" r="2.5" fill="#C8C2B8" opacity="0.6"/>
  376. <circle cx="371.8" cy="333" r="2.5" fill="#C8C2B8" opacity="0.6"/>
  377. <circle cx="143.8" cy="358.7" r="2.5" fill="#C8C2B8" opacity="0.6"/>
  378. <!-- Value labels for GLM-4.7 — annotation style -->
  379. <line x1="280" y1="69.5" x2="316" y2="52" stroke="#6B8F71" stroke-width="0.5" opacity="0.4"/>
  380. <text x="320" y="50" font-family="Inter" font-size="14" fill="#6B8F71" font-weight="600">95.7</text>
  381. <line x1="420.6" y1="361.2" x2="448" y2="348" stroke="#6B8F71" stroke-width="0.5" opacity="0.4"/>
  382. <text x="452" y="352" font-family="Inter" font-size="14" fill="#6B8F71" font-weight="600">73.8%</text>
  383. <line x1="113.5" y1="376.2" x2="82" y2="392" stroke="#6B8F71" stroke-width="0.5" opacity="0.4"/>
  384. <text x="78" y="390" font-family="Inter" font-size="14" fill="#6B8F71" font-weight="600" text-anchor="end">87.4</text>
  385. <!-- Spec annotation — bottom-right -->
  386. <text x="505" y="530" font-family="Inter" font-size="8" fill="#C8C2B8" font-weight="300" letter-spacing="1" text-anchor="end">Fig. 01 — Tri-axis Performance Map</text>
  387. </svg>
  388. </div>
  389. <!-- Metric cards -->
  390. <div class="metric-cards">
  391. <div class="m-card">
  392. <div class="m-card-name">AIME 2025</div>
  393. <div class="m-card-type">Mathematical Reasoning</div>
  394. <div class="m-card-value">95.7</div>
  395. <div class="m-card-delta">
  396. <svg viewBox="0 0 10 10" fill="none"><path d="M5 2L8 7H2L5 2Z" fill="#7D9B72"/></svg>
  397. +7.5 vs Claude 3.5
  398. </div>
  399. <div class="m-card-competitors">
  400. <span class="comp-mini">Claude 3.5: <span>88.2</span></span>
  401. <span class="comp-mini">GPT-4o: <span>83.6</span></span>
  402. </div>
  403. </div>
  404. <div class="m-card">
  405. <div class="m-card-name">SWE-bench Verified</div>
  406. <div class="m-card-type">Software Engineering</div>
  407. <div class="m-card-value">73.8<span class="unit">%</span></div>
  408. <div class="m-card-delta">
  409. <svg viewBox="0 0 10 10" fill="none"><path d="M5 2L8 7H2L5 2Z" fill="#7D9B72"/></svg>
  410. +20.5 vs Claude 3.5
  411. </div>
  412. <div class="m-card-competitors">
  413. <span class="comp-mini">Claude 3.5: <span>53.3%</span></span>
  414. <span class="comp-mini">GPT-4o: <span>48.2%</span></span>
  415. </div>
  416. </div>
  417. <div class="m-card">
  418. <div class="m-card-name">&tau;&sup2;-Bench</div>
  419. <div class="m-card-type">Agent Task Completion</div>
  420. <div class="m-card-value">87.4</div>
  421. <div class="m-card-delta">
  422. <svg viewBox="0 0 10 10" fill="none"><path d="M5 2L8 7H2L5 2Z" fill="#7D9B72"/></svg>
  423. +8.5 vs Claude 3.5
  424. </div>
  425. <div class="m-card-competitors">
  426. <span class="comp-mini">Claude 3.5: <span>78.9</span></span>
  427. <span class="comp-mini">GPT-4o: <span>71.5</span></span>
  428. </div>
  429. </div>
  430. </div>
  431. <div class="page-indicator">07 / 24</div>
  432. </div>
  433. </div>
  434. </body>
  435. </html>