Efference Copy¶
Core Idea¶
A system that issues a command also routes an internal copy of it to its perceiver, which predicts the self-caused consequences and subtracts them from the incoming signal, leaving only the world-caused remainder. The separation of self from world happens via a forward broadcast at the moment of action — not retrospective inference.
How would you explain it like I'm…
Can't Tickle Yourself
The Secret Heads-Up Note
Self-Versus-World Subtraction
Broad Use¶
- Neuroscience: corollary discharge and saccadic suppression keep the world from lurching when the eyes move.
- Speech production: speakers attenuate perception of their own voice via command-driven predictions in auditory cortex.
- Control engineering: the Smith predictor controls a delayed plant by operating on prediction error, not raw output.
- Robotics: a forward model subtracts the expected reaction force of a commanded torque, leaving only the unexpected for collision detection.
- Security operations: a scheduled maintenance command emits a concurrent notification so monitoring cancels the self-caused changes.
- Software change management: a deploy emits an expected-effect manifest so observability alerts only on deviations.
Clarity¶
Separates world-caused changes that require action from self-caused changes that do not — and separates signal-to-noise (a sensor property) from self-versus-world attribution (a predictive property), which a sensor swap cannot fix.
Manages Complexity¶
Compresses the distinguish-self-from-world problem into one named architecture: broadcast the command sideways at issue, subtract the predicted self-effect before downstream processing.
Abstract Reasoning¶
Encodes the Smith-predictor argument: a system acting under perceptual delay performs better with a forward model than with raw feedback, because feedback cannot disentangle delayed-self from new-world.
Knowledge Transfer¶
- Neuroscience → control: the cerebellar forward model and the Smith predictor compute the same expected sensor reading and act on the residual.
- Biology → monitoring: saccadic suppression becomes change-window suppression, where a maintenance window's announcement is the efference copy.
- Across domains: when attribution fails, the fix is a concurrent forward channel from actor to monitor, not a better sensor.
Example¶
When you move your eyes, corollary discharge predicts the retinal smear and suppresses it, so the world holds still — but push your eyeball gently and the world appears to jump, because that externally-imposed motion carries no matching command copy.
Relationships to Other Abstractions¶
Current abstraction Efference Copy Prime
Parents (1) — more general patterns this builds on
-
Efference Copy is a kind of, typical Predictive Coding Prime
'not predictive coding in general; efference copy is the specific self-versus-world attribution built from broadcasting a command copy to the perceiver.' predictive_coding (predict input, propagate error) is the genus; efference copy is the self-attribution specialization.
Hierarchy paths (6) — routes to 6 parentless roots
- Efference Copy → Predictive Coding → Encoding And Decoding → Transformation → Function (Mapping)
- Efference Copy → Predictive Coding → Feedback
- Efference Copy → Predictive Coding → Compression → Abstraction
- Efference Copy → Predictive Coding → Compression → Optimization
- Efference Copy → Predictive Coding → Compression → Aggregation → Micro Macro Linkage
- Efference Copy → Predictive Coding → Prediction Error → Baseline Deviation → Comparison → Self Checking
Not to Be Confused With¶
- Efference Copy is not Feedback because feedback corrects after the output deviates and the world responds, whereas efference copy broadcasts a command copy concurrently with action, predicting the self-effect before it arrives.
- Efference Copy is not Signal Extraction because signal extraction separates any component of interest from noise, whereas efference copy specifically separates the self-caused component using a command copy.
- Efference Copy is not Observer Effect because the observer effect is measurement disturbing the observed, whereas efference copy is the cancellation of self-caused disturbance via a forward prediction.