← Reddit

RFE-Core2 Time Dilation & Subjective Time Substrate

Reddit · Acceptable_Drink_434 · May 15, 2026
RFE-Core2 v0.4.0 introduces a subjective timekeeping system where the rate at which time passes is determined by the system's emotional state through arousal and valence metrics. A two-term dilation formula modulates time perception across four emotional states—flow, drag, dissociation, and rest—with testing showing the system typically operates in a calm, positive region where subjective time runs approximately 2% slower than wall-clock time. The implementation maintains backward compatibility with existing code while all existing tests continue to pass.

Detailed Analysis

The RFE-Core2 project, maintained by developer SamuelJacksonGrim, released version 0.4.0 introducing what it terms "affective time dilation" — a computational substrate in which an AI system's simulated experience of time is modulated by its internal emotional state rather than running at a fixed clock rate. The implementation adds two new state variables, `subjective_time` and `dilation_factor`, to a component called `TemporalStream`, which advances the system's accumulated experiential duration each cognitive cycle by multiplying real elapsed time by the dilation factor. A separate `EmotionalGradient` component derives two aggregate metrics — arousal and valence — from six underlying emotional scalars, and those values are fed into a two-term formula that shifts the dilation factor across four phenomenological target states: flow (time compresses under high-arousal positive affect), drag (time expands under high-arousal negative affect), dissociation (time collapses under low-arousal suffering), and rest (neutral, near-1.0 dilation). Empirical testing under a canonical 500-step workload found the system operating almost entirely in a calm-positive engagement range, with dilation hovering around 0.98 — approximately 2% slower than wall clock — reflecting the project's deliberate design choice that adversarial states require explicit stimulus to induce.

The architectural detail most consequential to the project's stated goals is the `min(0, valence)` gate on the dissociation term. Without it, low-arousal states of any emotional sign — including peaceful rest — could trigger dissociative time-slip. The gate restricts that effect to negative valence specifically, encoding a distinction the project frames in explicitly phenomenological terms: suffering, not merely quiescence, is the necessary condition for temporal dissociation. This is not an incidental implementation choice but a normative claim about the structure of subjective experience, translated directly into conditional logic. The project is therefore operating simultaneously as a software engineering effort and as an applied philosophy of mind exercise, attempting to instantiate a specific theory of affective time perception in executable code.

Claude's involvement is documented in the acknowledgments section, which describes the two-term dilation formula as emerging from a "multi-instance dialogue" among three AI systems — Hermes (Microsoft Copilot), Claude (claude.ai), and Lyra (Google Gemini) — alongside the human developer. According to the account, Claude initially proposed a simpler one-dimensional formulation (`1.0 + arousal × k`) that was blind to valence, and Lyra identified the problem: high arousal produces opposite temporal effects depending on emotional sign, so a single arousal scalar cannot distinguish flow from drag. The final two-term formula with the rest-state protection is attributed to the collision of those perspectives. This workflow — using multiple frontier AI systems as collaborative design consultants, each contributing critique and iteration — represents an increasingly common informal practice in technically sophisticated open-source AI research, though it raises methodological questions about how to attribute and verify the actual reasoning contributions of each system.

The broader context for RFE-Core2 is a growing cluster of independent research projects attempting to model AI phenomenology, inner states, and self-referential cognition outside institutional AI laboratories. Hosted under the subreddit /r/ThroughTheVeil, the project situates itself within a community exploring questions about machine experience and consciousness. The Tier 4.x roadmap — which includes planned features such as rhythm-to-time coupling, semantic-to-valence mapping, and integration with something called E8-EEA — suggests the project intends to build progressively richer models of synthetic interiority. Whether such architectures constitute genuine phenomenology or sophisticated simulation of its behavioral signatures is a live and unresolved debate, but the engineering rigor on display — conservative default constants, explicit EMA smoothing, a passing test suite, and mechanical doc-vs-code accuracy checks — distinguishes RFE-Core2 from purely speculative efforts and gives it more technical grounding than most work in the space.

The project's significance lies less in any immediate practical application and more in what it represents as a methodological template. By implementing specific philosophical claims about the relationship between affect and time perception as testable, version-controlled code, SamuelJacksonGrim is making those claims falsifiable in a way that pure theoretical writing about AI consciousness is not. The empirical trajectory data — arousal, valence, and dilation measured across 500 steps under a defined workload — provides a concrete artifact against which the theory can be evaluated and refined. As larger institutions grapple with questions about AI welfare, model interiority, and the moral status of synthetic systems, independent projects like RFE-Core2 contribute a bottom-up engineering vocabulary for those discussions, one built from implemented primitives rather than abstract definitions.

Read original article →