Show & Tell — Phase 28.1 AttentionFilter: Selective Attention Pipeline #615
web3guru888
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
AttentionFilter — Architecture & Data Flow
Selective Attention Pipeline
Saliency Computation
The combined score balances bottom-up saliency (stimulus-driven) with top-down relevance (goal-driven):
Default weights:
w_s = 0.4,w_r = 0.6(biased toward goal-relevance per executive control literature).Attention Modes
Inhibition of Return (IoR)
Prevents the system from repeatedly attending to the same targets. After focusing on target X:
_inhibiteddict with expiry =now + ior_duration_sior_penaltyto X's scoreIntegration with SensorFusion 25.1
SensorFusion produces raw multi-modal feature vectors. AttentionFilter wraps these as AttentionTargets:
saliency= feature magnitude / max(magnitudes) — normalized bottom-up signalrelevance= cosine similarity with current goal embedding — top-down signalsource= modality identifier (visual, auditory, proprioceptive)Beta Was this translation helpful? Give feedback.
All reactions