INQUIRING LINE

What is the accuracy cost of enforcing temporal causality inside model parameters?

This explores what you give up — in raw accuracy or capacity — when you bake a 'no peeking at the future' rule directly into a model's weights and routing, rather than enforcing it after the fact through retrieval or filtering.


This explores what you give up when you bake a 'no peeking at the future' rule directly into a model's weights and routing, rather than enforcing it after the fact. The cleanest answer in the corpus is the most surprising one: enforcing temporal causality architecturally can *lower* error rather than raise it. Can routing mask future experts to prevent knowledge leakage? trains separate experts on disjoint two-year slices of data and masks any expert whose window postdates the query — and this cuts future-knowledge errors by ~15% while *guaranteeing* the model never leaks information it shouldn't have known yet. So the headline 'cost' isn't accuracy; it's capacity. By masking experts, you're voluntarily refusing to use part of the model on any given query, trading total parameter access for a hard correctness guarantee.

Why might that trade be cheap? Because the thing causality enforcement protects against is something LLMs are genuinely bad at on their own. Why do LLMs handle causal reasoning better than temporal reasoning? shows that models handle causal *relations* far better than temporal *ordering* — causal connectives are explicit and frequent in training text, while 'what came before what' is usually implicit and has to be inferred. In other words, temporal order is exactly the dimension a model is least reliable at policing for itself, so moving that job into the architecture removes a load-bearing weakness rather than amputating a strength.

The deeper lesson is that *where* you enforce a constraint determines what it costs. Pushing rules into the weights via fine-tuning is the expensive path: Can decoding-time tuning preserve knowledge better than weight fine-tuning? finds that direct weight fine-tuning corrupts knowledge stored in lower layers, while a decoding-time intervention leaves the base knowledge intact. Does fine-tuning disconnect reasoning steps from final answers? adds that fine-tuning can quietly sever the link between a model's reasoning steps and its answers, making the reasoning performative. TiMoE's trick is that it never overwrites learned knowledge to enforce its rule — it *partitions and gates* it. The constraint lives in routing, not in corrupted parameters, which is why it dodges the usual fine-tuning tax.

This points at a general design principle the corpus keeps circling: isolate the constraint instead of dissolving it into the whole model. Can isolating task-specific parameters prevent multi-task fine-tuning interference? shows that freezing task-specific 'core' parameter regions beats blending everything together, and notes pointedly that temporal scheduling *alone* fails without explicit structural isolation. Does reinforcement learning update only a small fraction of parameters? suggests models naturally route capability into sparse, structured subnetworks anyway — so carving the parameter space along temporal lines works with the grain of how these models organize knowledge, not against it.

The thing you didn't know you wanted to know: the most reliable way to make a model honor temporal causality may be to stop asking it to *reason* about time at all. Can separating causal models from language models improve reasoning? takes this to its logical end — pull causal structure out of the LLM entirely into a formal model and let the LLM only render the language. Causality enforced as architecture (routing, partitioning, external structure) is nearly free; causality demanded of the weights as a learned skill is where the real accuracy bill comes due.


Sources 7 notes

Can routing mask future experts to prevent knowledge leakage?

TiMoE pre-trains experts on disjoint two-year slices and masks experts whose windows postdate the query, cutting future-knowledge errors by ~15% while guaranteeing strict causal validity. This shows temporal grounding can be an architectural property, not just a retrieval patch.

Why do LLMs handle causal reasoning better than temporal reasoning?

ChatGPT excels at causal relations but struggles with temporal ordering because causal connectives are explicit and frequent in training data, while temporal order is often implicit and must be inferred contextually.

Can decoding-time tuning preserve knowledge better than weight fine-tuning?

Proxy-tuning closes 88-91% of the alignment gap while surpassing direct fine-tuning on knowledge tasks by leaving base model weights untouched. Direct fine-tuning corrupts knowledge storage in lower layers, whereas proxy-tuning applies distributional shifts that primarily affect reasoning and style.

Does fine-tuning disconnect reasoning steps from final answers?

Three faithfulness tests show fine-tuned models generate reasoning chains that less reliably influence final outputs. Early termination, paraphrasing, and filler substitution all produce invariant answers more often after fine-tuning, suggesting reasoning becomes performative rather than functional.

Can isolating task-specific parameters prevent multi-task fine-tuning interference?

Research shows that identifying core parameter regions per task, clustering overlapping tasks, and freezing core parameters while geometrically merging non-core parameters consistently outperforms standard multi-task fine-tuning. Temporal task scheduling alone proves insufficient without explicit structural parameter isolation.

Does reinforcement learning update only a small fraction of parameters?

Across seven RL algorithms and ten LLM families, RL induces intrinsic parameter sparsity of 5–30% without explicit regularization. Critically, these sparse updates are nearly full-rank and nearly identical across random seeds, indicating structural rather than arbitrary parameter selection.

Can separating causal models from language models improve reasoning?

Causal Reflection separates causal reasoning into a formal dynamic model with a Reflect mechanism for revision, relegating the LLM to structured inference and language rendering. This architecture sidesteps asking LLMs to perform causal reasoning directly, addressing both spurious-correlation failures and RL's explanation gap.

Next inquiring lines