Saelarien's picture
Upload 6 files
c40c8dc verified
Methods
This experiment evaluates how coherence changes as perturbation increases within a simple interpretive-driven system. The goal was to produce an empirical demonstration of the threshold behavior described in the Lattice Coherence Theorem, where coherence declines sharply once perturbation exceeds a critical value.
Model Setup
A minimal computational model was used to prioritize interpretability. The system processes a sequence of internal activation states, and coherence is defined as the mean pairwise similarity between these states. This reflects how consistently the system maintains internal structure under increasing load.
Noise Injection Procedure
Noise was applied directly to the system’s internal state. For each trial, a noise value between 0.0 and 1.0 was selected. Perturbation was introduced by adding scaled random noise to the activation states. Each noise level represents an increasing degree of external disturbance.
Coherence Metric
Coherence was quantified using cosine similarity. For each noise value, the model generated a set of internal activations, and coherence was calculated as the mean cosine similarity across all pairs of activations. Higher values indicate stable alignment, while lower values indicate breakdown of synchrony.
Data Collection
The experiment iterated through a range of noise values, computing coherence at each step. The results were recorded in the file coherence_vs_noise.csv, which includes two columns:
* noise (the perturbation level applied)
* coherence (the resulting coherence score)
Plot Generation
A simple plotting script was used to visualize the relationship between noise and coherence. The plot illustrates a structured decline in coherence with increasing noise, followed by a sharp drop that corresponds to the predicted threshold condition.
Reproducibility
All code required to reproduce this experiment is provided in the accompanying notebook. The notebook contains the noise generation procedure, coherence calculation, dataset export steps, and plotting code. Running the notebook in a fresh environment reproduces the CSV and plot exactly.
Purpose of the Method
The intention of this experiment is not to evaluate a specific architecture but to provide a conceptual demonstration of threshold behavior in coherence-driven systems. The simplicity of the model ensures that the observed transition can be clearly attributed to perturbation dynamics rather than model complexity.