6 Matching Annotations
  1. Last 7 days
    1. Kimi K2.6 surpassed Opus 4.5 with a score of 56.3 in 4.8 months, and GLM-5.2 cleared GPT-5.2 with a score of 72.4 in 6 months.

      这两个数字是判断模型层会否商品化的关键。但分子分母都由作者自选:换一组基准、换一个时代起点模型,追赶期就会变。当成方向性信号可以,当成定量结论会踩坑。

    1. GLM-5.3-Flash features a mixture of experts architecture with 320 billion parameters. It activates 18 billion parameters to answer prompts.

      320B 总参只激活 18B,激活率不到 6%,比上一代激进得多。这个配比说明中国厂商已把稀疏度当成主要降本旋钮,而不是缩小模型。后果是部署门槛卡在显存容量而非算力,反而更依赖大内存硬件。

    1. Amazon kept shutting down my tablet, so I spent $266 on four AI models to own it

      Amazon Fire HD 10 Rooting Journey via LLMs

      • Problem & Context:

        • The author used an Amazon Fire HD 10 (11th Gen, 2021) as a dedicated 24/7 Home Assistant dashboard via Fully Kiosk Browser.
        • The tablet repeatedly executed full software shutdowns caused by protected, background Amazon packages (com.amazon.device.software.ota, etc.) that could not be disabled without root access.
        • The device was widely regarded as unrootable due to Amazon fusing the bootrom shut.
      • The Experiment & Financials:

        • To achieve root access and stop unwanted shutdowns, the author orchestrated multiple LLMs rather than writing the exploit code manually.
        • Total Cost: $266.15 spent across several models to root a $114.26 tablet (on principle).
      • Model Contributions & Breakthroughs:

        • Claude (Anthropic): Spent 5 months diagnosing telemetry and system permissions, successfully disabling basic packages until hitting the protected-package barrier; stopped assisting when its broad safety guardrails flagged the task as cyber-related.
        • Kimi K3 (Moonshot AI): Reasoned that rooting one's own hardware is legally permissible under DMCA exemptions. It analyzed the extracted kernel from Amazon's OTA image and identified an unpatched vulnerability (CVE-2022-38181, a Mali GPU use-after-free bug present in Fire OS 7.3.2.6). Over 30 hours and 500+ kernel panics, it built the trigger and GPU write primitive.
        • GLM-5.2 (Z.ai): Diagnosed that continuous brute-forcing was hitting a structural issue, but stalled after misdiagnosing the problem as an insurmountable hardware CPU/GPU cache coherency limitation.
        • GLM-5.3 (Z.ai): Resolved the issue in one day by correcting two core oversights:
          • The author's kernel binary had a fixed offset shift (0x5C000) compared to the reference OTA image.
          • MediaTek configured Mali page tables in a format different from Arm reference code.
        • Correcting these allowed GLM-5.3 to make GPU memory writes work reliably, set selinux_enforcing to permissive, obtain a root shell, and safely remove over 100 Amazon packages (pm uninstall --user 0) without bricking the device.
      • Key Insights & Takeaways:

        • "Prompt Kiddie" Dynamic: The author's role focused on prompt steering, evaluating output validity, and knowing when to hand off context between competing models.
        • AI Guardrail Divergence: Frontier US models (Claude, ChatGPT/Codex) refused to help with exploit analysis due to rigid policy filters, whereas Chinese frontier models (Kimi K3, GLM series) reasoned through the authorization context to assist with legal device ownership.

      Hacker News Discussion

      • Autonomous Reverse Engineering:

        • Commenters shared similar experiences using AI agents to decompile closed binaries, extract hidden APIs, and reconstruct readable source code from scratch.
        • Discussion emerged on how advanced AI is lowering the technical barrier to reverse engineering, blurring the practical line between closed-source and open-source software.
      • Device Ownership & Rights:

        • Strong agreement with the author's underlying motivation: users should have full software control and root rights over hardware they purchase.
        • Participants discussed tools like Fire Toolbox and noted that few modern mainstream tablets permit bootloader unlocking or clean OS replacements (such as LineageOS or GrapheneOS).
      • AI Policy & Safeguard Disparity:

        • Many highlighted the friction caused by blunt security guardrails in Western models (Anthropic, OpenAI), which frequently block benign tasks like debugging personal hardware or analyzing logs.
        • Users debated the legal nuances of distributing binary patches versus proprietary software.
      • AI Writing Style Debates:

        • Several commenters noted familiar AI cadence and phrasing patterns in the blog post's narrative structure.
        • The author and others countered that AI-assisted drafting enables engineers without writing backgrounds to document complex workflows, though debate continues regarding authenticity in technical writing.
  2. Jun 2026
    1. GLM-5.2 vs Claude Opus
      • Overview of GLM-5.2: It is Z.ai's latest flagship model, released with fully open weights under the permissive MIT license. It features a usable 1-million-token context window and dynamic capability routing via two thinking effort levels (High and Max).
      • Core Limitations: GLM-5.2 is strictly text-only and lacks multimodal capabilities. It cannot process or analyze visuals, screenshots, or user interface states natively.
      • Pricing Advantage: GLM-5.2 offers a substantial price reduction compared to top proprietary engines. Its API is priced at $1.40 per million input tokens and $4.40 per million output tokens, making its output generation over 5x cheaper than Claude Opus 4.8 ($5 input / $25 output).
      • Head-to-Head Testing (WebGL Game from Scratch): Both models were prompted to build a third-person 3D platformer game in raw WebGL without utilizing external 3D engine libraries (such as Three.js).
        • Claude Opus 4.8 Execution: Completed the build in 33 minutes and 30 seconds using ~217k output tokens ($21.92 estimated cost). It successfully implemented correct camera controllers, textures, animations, and valid win conditions.
        • GLM-5.2 Execution: Took 1 hour, 10 minutes, and 40 seconds using ~131k output tokens ($5.39 real billed cost). While it successfully coded advanced mechanics like spring launch velocity, it introduced basic structural bugs—such as rendering the player backwards, omitting character textures, and ignoring win states.
      • The Multimodal Verification Edge: Claude Opus leveraged its vision to inspect automated screenshots of the game, spotting and cleaning up debug overlays prior to completion. GLM-5.2 had to rely on a fallback script that sampled raw pixel colors; it verified the existence of the correct color palette but missed catastrophic visual rendering and layout bugs.
      • Benchmark Performance: Official metrics place GLM-5.2 directly between Claude Opus 4.7 and 4.8. It trails Opus 4.8 on multi-file reasoning, repository-level debugging, and complex software architectures (such as SWE-Marathon and DeepSWE), but matches or exceeds frontier models on core code generation, tool use (MCP-Atlas), and math benchmarks (AIME 2026).

      Hacker News Discussion

      • Orchestration and Tool Selection Over Model Scale: Commenters point out that the orchestration layer is becoming the primary differentiator in production AI. The core challenge for modern engineering agents is no longer raw token intelligence, but the ability to correctly navigate real-world toolchains and evaluate responses within complex environments.
      • Shift from Mainframe to PC Era in AI: The discussion highlights an architectural shift from monolithic central cloud APIs toward decentralized execution. Users emphasize that open-weight deployments give developers long-term vendor optionality and structural independence from platform deprecations or policy shifts.
      • High Compute and Output Latency Overhead: Multiple engineers note that while GLM-5.2 is remarkably smart for an open-weight model, it is highly token-hungry. Its extended reasoning traces can consume over 40k tokens and multiple minutes of thinking before outputting files, making inference speed an ongoing optimization bottleneck.
      • The Practical Value of Local and Managed Hosting: The community highlights that having an MIT-licensed model at this tier eliminates vendor lock-in risks. For developers without massive on-premise hardware setups (such as multi-H100 configurations) to serve a 756B parameter model, using cost-effective managed endpoints like OpenRouter provides the perfect balance of massive savings and immediate API access.
  3. Apr 2026
    1. Qwen3.5 397B A17B: 15.3%, DeepSeek V3.2: 14.5%, GLM-5: 14.5%, Kimi K2.5: 11.5%, MiniMax-M2.7: 10.6%

      中美专业服务 Agent 的差距在这里变得具体可见:顶级美国模型 33%,中国最强开源模型(Qwen3.5、DeepSeek、GLM-5)约 14-15%,差距超过 2 倍。更值得注意的是智谱 AI 的 GLM-5 与 DeepSeek V3.2 并列,说明在专业服务 Agent 这个维度,国内头部玩家的能力相当接近。对于智谱的战略意义:这个 2 倍差距是否可以通过领域专精(比如专注于中国本土金融场景)来弥补?

    1. 【洞察】Mythos 发布的同一天(2026年4月7日),Z.ai 发布了 GLM-5.1——一个 744B 参数的 MIT 开源模型,在 SWE-bench Pro 上甚至以 58.4% 超越了 Opus 4.6 的 57.3%。这个时间巧合揭示了一个无法回避的张力:Anthropic 试图通过限制访问来防止 AI 网络武器扩散,但开源生态系统正在以同样的速度追赶闭源前沿——Glasswing 的「防御窗口」可能比预期短得多。