Why I stopped trying to correct my AI model and made incoherence algebraically impossible
Why I stopped trying to correct my AI model and made incoherence algebraically impossible
为什么我不再试图修正我的 AI 模型,而是从代数层面让“不连贯”变得不可能
Every large language model I’ve looked at does the same thing with coherence: it monitors for it, detects when it’s drifting, and tries to correct. I built something different. In CORE, incoherence is structurally impossible. Not monitored. Not corrected. Algebraically ruled out. Here’s how that works — and why it matters. 我所研究过的每一个大语言模型在处理连贯性时都做着同样的事情:监控连贯性,检测其是否偏离,并尝试进行修正。我构建了一个不同的系统。在 CORE 中,不连贯在结构上是不可能的。它不需要监控,不需要修正,而是从代数层面被排除了。以下是它的工作原理及其重要性。
The problem with correction-based coherence
基于修正的连贯性所存在的问题
When you monitor a system for coherence and correct when it drifts, you’re accepting a few hidden costs: There’s always a window between drift and detection; Your correction mechanism can itself introduce error; You can never formally prove the system is coherent — only that it passed the last check; The system has no structural reason to be coherent; it just happens to be, right now. This is fine for many applications. But if you want a cognitive system that is inspectable, replayable, and auditable — where you can trace every step and guarantee the result — it’s a fundamental limitation. 当你监控一个系统的连贯性并在其偏离时进行修正时,你实际上接受了一些隐性成本:偏离与检测之间总存在时间窗口;修正机制本身可能会引入错误;你永远无法从形式上证明系统是连贯的,只能证明它通过了上一次检查;系统没有结构上的理由保持连贯,它只是“恰好”连贯而已。对于许多应用来说,这没问题。但如果你想要一个可检查、可重现、可审计的认知系统——即能够追踪每一步并保证结果的系统——这就是一个根本性的局限。
The algebraic alternative
代数替代方案
CORE is built on Cl(4,1) Conformal Geometric Algebra. All state is represented as a versor — a geometric object with a well-defined inverse. All transitions are versor products. This gives us a hard invariant that holds at all times: ||F * reverse(F) - 1||_F < 1e-6. If this invariant breaks, the operation is invalid — it doesn’t produce a result that gets corrected later. It simply cannot complete. Coherence is enforced at the level of the algebra itself. No attention mechanism. No sampling. No correction loop.
CORE 基于 Cl(4,1) 共形几何代数(Conformal Geometric Algebra)构建。所有状态都表示为“旋子”(versor)——一种具有明确逆元的几何对象。所有的转换都是旋子积。这为我们提供了一个始终成立的硬性不变量:||F * reverse(F) - 1||_F < 1e-6。如果这个不变量被破坏,操作即为无效——它不会产生一个稍后再被修正的结果,而是根本无法完成。连贯性是在代数层面本身被强制执行的。没有注意力机制,没有采样,也没有修正循环。
What this looks like in practice
实际应用中的表现
CORE has an Evidence-Governed Domain Layer. Every knowledge domain passes through a formal lifecycle before its claims enter the live cognitive field: SPECULATIVE → COHERENT → CONTESTED → FALSIFIED. Promotion to audit-passed status requires a reviewer-signed evidence-bundle digest that reproduces byte-for-byte from on-disk lane results. Three domains have reached this status: mathematics_logic, physics, and systems_software. No domain holds expert status yet — and that’s the point. CORE 拥有一个“证据治理领域层”。每个知识领域在进入实时认知领域之前,都要经历一个正式的生命周期:推测(SPECULATIVE)→ 连贯(COHERENT)→ 争议(CONTESTED)→ 证伪(FALSIFIED)。晋升为“审计通过”状态需要一个经审查者签名的证据包摘要,该摘要必须能从磁盘上的路径结果中逐字节重现。目前有三个领域达到了这一状态:数学逻辑、物理学和系统软件。还没有任何领域获得“专家”地位——这正是重点所在。
The self-demotion event
自我降级事件
On 2026-05-23, mathematics_logic was briefly promoted to expert. Then a non-gating metric in its evidence bundle changed, invalidating the signature digest. The system auto-reverted it to audit-passed. The system demoted itself. No human intervened. No correction loop triggered. The architecture enforced the invariant, and the state walked back. That is the system working exactly as designed. 2026年5月23日,数学逻辑领域曾短暂晋升为“专家”。随后,其证据包中的一个非门控指标发生了变化,导致签名摘要失效。系统自动将其回退到“审计通过”状态。系统实现了自我降级。没有人为干预,没有触发修正循环。架构强制执行了不变量,状态自动回退。这就是系统按照设计意图运行的表现。
The engineering choices behind this
背后的工程选择
Three principles drive the implementation:
- Mechanical Sympathy — The system is designed specifically for Apple Silicon’s Unified Memory Architecture (UMA), where CPU, GPU, and Neural Engine share physical RAM. No unnecessary copies, no GC pauses on hot paths. Written in Rust and Zig.
- Semantic Rigor — Every term in the system has a precise, non-negotiable meaning. There are no “good enough” thresholds. Either a claim has a valid evidence-bundle digest or it doesn’t. Either the versor invariant holds or the operation is invalid.
- Third Door — Rather than adapting existing libraries or patterns, CORE builds from first principles. The vault recall system uses the CGA inner product directly — not cosine similarity, not approximate nearest neighbors. Exact recall, every time. 该实现的驱动原则有三点:
- 机械同理心 (Mechanical Sympathy) —— 系统专为 Apple Silicon 的统一内存架构 (UMA) 设计,CPU、GPU 和神经网络引擎共享物理内存。没有不必要的拷贝,热路径上没有垃圾回收(GC)停顿。使用 Rust 和 Zig 编写。
- 语义严谨性 —— 系统中的每个术语都有精确且不可商榷的含义。没有“差不多就行”的阈值。要么一个声明拥有有效的证据包摘要,要么就没有。要么旋子不变量成立,要么操作无效。
- 第三条路 (Third Door) —— CORE 不去适配现有的库或模式,而是从第一性原理出发构建。其仓库检索系统直接使用 CGA 内积——不是余弦相似度,也不是近似最近邻。每次都是精确检索。
Why this matters for AI safety
为什么这对 AI 安全至关重要
A system that is coherent by construction is a system you can audit. You can take any state, any transition, any claim in the live field — and verify it formally. There is no “the model was probably right here” — either the invariant held or it didn’t. This is a different computational geometry than transformer-based architectures. It’s not better at everything. But for inspectable, replayable, evidence-governed cognition, it’s the right foundation. 一个在构建时就具备连贯性的系统,是一个你可以审计的系统。你可以获取实时领域中的任何状态、任何转换、任何声明,并对其进行形式化验证。不存在“模型在这里可能是对的”这种说法——要么不变量成立,要么不成立。这与基于 Transformer 的架构有着不同的计算几何逻辑。它并非在所有方面都更优,但对于可检查、可重现、证据治理的认知系统而言,它是正确的基础。
The repo and patent
仓库与专利
CORE is open source and under active development. A provisional patent has been filed covering the core architecture (U.S. 64/080,054). Repo: github.com/AssetOverflow/core GitHub Sponsors (5 tiers, $5–$1,500/mo): github.com/sponsors/AssetOverflow Sponsorship manifesto with capital efficiency details: docs/sponsors.md If you’re working on deterministic AI, geometric algebra, or zero-allocation systems in Rust/Zig, I’d love to hear from you. Open a discussion in the repo or reach out through GitHub. CORE 是开源的,且处于活跃开发阶段。已提交涵盖核心架构的临时专利申请(U.S. 64/080,054)。 仓库地址:github.com/AssetOverflow/core GitHub 赞助(5 个等级,每月 $5–$1,500):github.com/sponsors/AssetOverflow 包含资本效率细节的赞助宣言:docs/sponsors.md 如果你正在从事确定性 AI、几何代数或 Rust/Zig 中的零分配系统研究,我很乐意与你交流。请在仓库中发起讨论或通过 GitHub 联系我。