Recognize from evidence
两层 GELU evidence encoder
backbone 只处理 factual evidence。它不接收 alternative query,也没有 row ID 作为 mechanism input。
Full computation graph
蓝色路径只读取 \(x^F\);紫色对象是可复用的 UnitDistribution;
绿色路径接收 \(x^Q\);金色模块完成无需 latent Monte Carlo 的解析传播。
Exact forward pass
这里逐项对应真实实现,而不是抽象的 encoder–decoder 占位图。
Recognize from evidence
backbone 只处理 factual evidence。它不接收 alternative query,也没有 row ID 作为 mechanism input。
Form an explicit unit object
二者组成 \(q_\phi(u\mid O)=\prod_j\operatorname{Cauchy}(u_j;m_j,\gamma_j)\)。 这是 learner-side candidate distribution,不是 actual identity 被重新抽样。
Change the query, keep the token
query \(x\) 同时改变 population-level base response 与 unit modulation weight;stored \(A_O\) 不变,所以 query change 不会偷换 token。
Compose uncertainty exactly
输出 \(p_{\phi,\theta}(y\mid O,x)=\operatorname{Cauchy}(m_Y,s_Y)\)。训练与 inference 都不需要对 latent \(u\) 做 Monte Carlo。
Train · factual diagonal
backprop 同时更新 encoder 参数 \(\phi\) 与 mechanism 参数 \(\theta\)。\(O\) 与 \(x\) 都是 factual,但维度和计算角色不同。
Infer · fixed abduction
abduce 只调用一次;response_law_from_unit 对同一个 token 重复调用。
Seven real model graphs
confirmatory matrix 使用七个模型。它们共享相同的 evidence、query、split、corruption 和 training budget;真正改变的是 uncertainty geometry、response family 与是否显式形成 unit object。
三者共享同一 encoder 与 bilinear mechanism,只改变 abducted uncertainty geometry。
Scale rule: \(\sum_j |g_j|\gamma_j+\sigma\)。支持真正的 fixed-abduction API。
Scale rule: \(\sqrt{\sum_j g_j^2s_j^2+\sigma^2}\)。结构相同,比较 \(L_2\) 与 \(L_1\) uncertainty geometry。
unit scale 被置零;保留 event-scale Cauchy response。参数计数仍包含共享 encoder 的 scale head,但 forward 不使用其输出。
不形成可存储 unit object;每个 query 都与 evidence 拼接后重新通过整个网络。
最重要的 capacity-matched baseline。没有 abduce / response_law_from_unit 分界。
与 Direct Cauchy 完全相同的 network body;只替换 response family 和 NLL。
检验优势是否只是来自 query-dependent coefficients 或 mixture flexibility。
evidence 直接条件化 response coefficients,但不将它们解释为 latent token distribution。
evidence 只决定 mixture weights;四个 experts 的 location 随 query 线性变化,scale 为 expert-specific 常数。
| Model | Evidence / query routing | Stored unit object | Output law | Parameters |
|---|---|---|---|---|
| Cauchy Unit | separate \(O\to\) encoder; \(x\to\) bilinear map | yes · Cauchy \(m,\gamma\) | Cauchy | 5,267 |
| Gaussian Unit | same Unit routing | yes · Gaussian \(\mu,s\) | Gaussian | 5,267 |
| Point Unit | same Unit routing | yes · point \(\widehat u\) | Cauchy event law | 5,267 |
| Direct Cauchy | concatenate \([O;x]\) | no | Cauchy | 5,216 |
| Direct Gaussian | concatenate \([O;x]\) | no | Gaussian | 5,216 |
| Varying Cauchy | \(O\to\) coefficients; apply \(x\) | no | Cauchy | 4,996 |
| Cauchy MoE4 | \(O\to\) gate; \(x\to\) experts | no | 4-Cauchy mixture | 5,008 |
Primary capacity contract
Cauchy Unit 使用 \(64,64\) encoder 与 \(d=4\) latent code;Direct Cauchy 使用 \(66,66\) hidden widths。两者相差 51 个可训练参数,即以 Unit model 为分母约 0.97%。
Δ = 51 parameterssame optimizer · same rows · same corruption · same query grid
What the diagram does not prove
one-shot likelihood 监督 composed factual law,不唯一识别 \(u^\star\)、latent axes 或 encoder–mechanism decomposition。
fixed-abduction 是 computational linkage contract;alternative-query causal meaning 仍需 intervention、support、confounding 与 stability assumptions。
formal confirmatory 状态为 not_confirmed。架构是真实实现,但当前实验没有支持预声明的 Unit robustness advantage。