Blame
| b29efc | Anonymous | 2026-04-13 23:45:13 | 1 | # Neurotechnology Platform Design: From Markers to States |
| 2 | ||||
| 3 | ## Core Principle |
|||
| 4 | ||||
| 5 | A neurotechnology platform should **not** treat individual neurofeedback markers as states. |
|||
| 6 | ||||
| 7 | Instead, it should use the following pipeline: |
|||
| 8 | ||||
| 9 | **marker / feature -> construct axis -> task-specific state** |
|||
| 10 | ||||
| 11 | This is the core abstraction that turns a collection of EEG / fNIRS / physiological features into a reusable software foundation for neurofeedback, cognitive training, and clinical applications. |
|||
| 12 | ||||
| 13 | --- |
|||
| 14 | ||||
| 15 | ## The Problem This Solves |
|||
| 16 | ||||
| 17 | Literature tables give us many useful markers: |
|||
| 18 | ||||
| 19 | - SMR |
|||
| 20 | - FMT |
|||
| 21 | - Theta/Beta Ratio |
|||
| 22 | - Upper Alpha |
|||
| 23 | - FAA |
|||
| 24 | - SCPs |
|||
| 25 | - Alpha/Theta |
|||
| 26 | - T3 Alpha / Temporal-Frontal Coherence |
|||
| 27 | - HbO Up-Regulation |
|||
| 28 | - Decoded EEG or fNIRS signals |
|||
| 29 | - etc. |
|||
| 30 | ||||
| 31 | But these are **not** directly the things an app should train. |
|||
| 32 | ||||
| 33 | For example: |
|||
| 34 | ||||
| 35 | - **SMR** is not the same thing as **calm focus** |
|||
| 36 | - **FAA** is not the same thing as **good mood** |
|||
| 37 | - **Theta/Beta Ratio** is not the same thing as **attention** |
|||
| 38 | - **FMT** is not universally “up good” or “down good” |
|||
| 39 | ||||
| 40 | These markers are better treated as: |
|||
| 41 | ||||
| 42 | - **observations** |
|||
| 43 | - **control handles** |
|||
| 44 | - **evidence-backed proxies** |
|||
| 45 | - **inputs to latent construct estimation** |
|||
| 46 | ||||
| 47 | So the platform should infer **construct axes** and then map those axes into **task-specific states**. |
|||
| 48 | ||||
| 49 | --- |
|||
| 50 | ||||
| 51 | ## The Pipeline |
|||
| 52 | ||||
| 53 | ## 1. Marker / Feature Layer |
|||
| 54 | ||||
| 55 | This is the raw library of things the platform can compute. |
|||
| 56 | ||||
| 57 | Examples: |
|||
| 58 | - EEG bandpower |
|||
| 59 | - individualized alpha |
|||
| 60 | - theta/beta ratio |
|||
| 61 | - SMR |
|||
| 62 | - FAA |
|||
| 63 | - coherence |
|||
| 64 | - SCP amplitude |
|||
| 65 | - HbO / HbR changes |
|||
| 66 | - decoded multivariate patterns |
|||
| 67 | - HRV |
|||
| 68 | - respiration |
|||
| 69 | - EDA |
|||
| 70 | - movement load |
|||
| 71 | - task performance metrics |
|||
| 72 | ||||
| 73 | This layer answers: |
|||
| 74 | - What can we measure? |
|||
| 75 | - From where? |
|||
| 76 | - With what latency? |
|||
| 77 | - Under what task assumptions? |
|||
| 78 | - For which populations or use cases? |
|||
| 79 | - With what evidence strength? |
|||
| 80 | ||||
| 81 | This should be implemented as a **feature registry**. |
|||
| 82 | ||||
| 83 | --- |
|||
| 84 | ||||
| 85 | ## 2. Construct Axis Layer |
|||
| 86 | ||||
| 87 | Construct axes are reusable latent dimensions that markers contribute to. |
|||
| 88 | ||||
| 89 | These axes are more stable and reusable than app-specific states. |
|||
| 90 | ||||
| 91 | A list of potential shared axes: |
|||
| 92 | ||||
| 93 | - **Arousal / activation** |
|||
| 94 | - **Task engagement** |
|||
| 95 | - **Cognitive control** |
|||
| 96 | - **Calm focus / stable attentional readiness** |
|||
| 97 | - **Motor automaticity** |
|||
| 98 | - **Perceptual breadth / visuospatial readiness** |
|||
| 99 | - **Affective regulation / emotional load** |
|||
| 100 | - **Executive recruitment / cognitive load** |
|||
| 101 | - **Fatigue / instability** |
|||
| 102 | - **Sleep readiness / sleep stability** |
|||
| 103 | - **Signal reliability** |
|||
| 104 | ||||
| 105 | A single marker can contribute to multiple axes. |
|||
| 106 | ||||
| 107 | Example: |
|||
| 108 | - **SMR** may contribute to calm focus, motor stability, and sleep stability |
|||
| 109 | - **FMT** may contribute to task engagement and cognitive control |
|||
| 110 | - **FAA** may contribute to affective regulation |
|||
| 111 | - **dlPFC HbO** may contribute to executive recruitment and cognitive load |
|||
| 112 | ||||
| 113 | This is the key move: |
|||
| 114 | **markers are grouped into latent constructs rather than treated as whole states** |
|||
| 115 | ||||
| 116 | Similarly, each axis would be composed of multiple markers. |
|||
| 117 | ||||
| 118 | For example, calm focus could potentially be derived from SMR, upper alpha and high-beta. |
|||
| 119 | ||||
| 120 | --- |
|||
| 121 | ||||
| 122 | ## 3. Task-Specific State Layer |
|||
| 123 | ||||
| 124 | States are protocol-specific control abstractions built from combinations of axes. |
|||
| 125 | ||||
| 126 | Examples: |
|||
| 127 | ||||
| 128 | ### Athletic precision states |
|||
| 129 | - under-engaged |
|||
| 130 | - calm-focused |
|||
| 131 | - over-aroused |
|||
| 132 | - over-controlled |
|||
| 133 | - automatic / in-the-pocket |
|||
| 134 | - fatigued |
|||
| 135 | ||||
| 136 | ### Cognitive enhancement / wellbeing states |
|||
| 137 | - distracted |
|||
| 138 | - stable attention |
|||
| 139 | - mentally strained |
|||
| 140 | - inward / meditative |
|||
| 141 | - emotionally loaded |
|||
| 142 | - sleep-ready |
|||
| 143 | ||||
| 144 | ### Clinical states |
|||
| 145 | - hyperaroused |
|||
| 146 | - dysregulated |
|||
| 147 | - avoidant / shut down |
|||
| 148 | - regulated |
|||
| 149 | - impulsive / distractible |
|||
| 150 | - cognitively overloaded |
|||
| 151 | ||||
| 152 | States are what the app or protocol actually responds to. |
|||
| 153 | ||||
| 154 | --- |
|||
| 155 | ||||
| 156 | ## Recommended Software Abstraction |
|||
| 157 | ||||
| 158 | The platform should be organized as: |
|||
| 159 | ||||
| 160 | **signals -> markers -> axes -> states -> feedback policy** |
|||
| 161 | ||||
| 162 | ### Signals |
|||
| 163 | Raw EEG / fNIRS / physiology / behavior |
|||
| 164 | ||||
| 165 | ### Markers |
|||
| 166 | Computed features and protocol-specific measurements |
|||
| 167 | ||||
| 168 | ### Axes |
|||
| 169 | Shared latent constructs estimated from marker combinations |
|||
| 170 | ||||
| 171 | ### States |
|||
| 172 | Task-specific regions or categories in axis space |
|||
| 173 | ||||
| 174 | ### Feedback Policy |
|||
| 175 | What the app does next: |
|||
| 176 | - visual feedback |
|||
| 177 | - audio feedback |
|||
| 178 | - task adaptation |
|||
| 179 | - protocol progression |
|||
| 180 | - clinician recommendation |
|||
| 181 | - stimulation policy |
|||
| 182 | ||||
| 183 | --- |
|||
| 184 | ||||
| 185 | ## Why This Matters |
|||
| 186 | ||||
| 187 | This architecture prevents the platform from becoming: |
|||
| 188 | ||||
| 189 | - a bag of unrelated protocol scripts |
|||
| 190 | - a hardcoded “SMR app / FAA app / Theta-Beta app” zoo |
|||
| 191 | - a brittle collection of narrow decoders |
|||
| 192 | ||||
| 193 | Instead, it creates: |
|||
| 194 | ||||
| 195 | - a shared ontology |
|||
| 196 | - reusable estimators |
|||
| 197 | - protocol portability |
|||
| 198 | - room for personalization |
|||
| 199 | - room for future learned representations or manifold models |
|||
| 200 | ||||
| 201 | --- |
|||
| 202 | ||||
| 203 | # Marker-to-Axis-to-State Ontology |
|||
| 204 | ||||
| 205 | ## Canonical Axes |
|||
| 206 | ||||
| 207 | | Canonical Axis | What It Represents | Example App-Level States | |
|||
| 208 | |---|---|---| |
|||
| 209 | | **Arousal / Activation** | How under-activated, optimal, or over-activated the person is | under-engaged, optimal, over-aroused | |
|||
| 210 | | **Task Engagement** | Whether the person is actively on-task vs drifting or disengaging | distracted, engaged, mind-wandering | |
|||
| 211 | | **Cognitive Control** | Degree of top-down task control and monitoring | unfocused, controlled, over-controlled | |
|||
| 212 | | **Calm Focus / Stable Attentional Readiness** | Quiet, stable, low-noise task readiness | scattered, calm-focused, sedated | |
|||
| 213 | | **Motor Automaticity** | Degree to which motor skill is flowing without verbal interference | effortful, automatic, choking | |
|||
| 214 | | **Perceptual Breadth / Visuospatial Readiness** | Peripheral awareness, spatial monitoring, situational scanning | tunnel vision, broad awareness, diffuse attention | |
|||
| 215 | | **Affective Regulation / Emotional Load** | Emotional distress, regulation success, approach vs avoidance | distressed, regulating, settled | |
|||
| 216 | | **Executive Recruitment / Cognitive Load** | Working memory and prefrontal task recruitment | under-recruited, optimal, overloaded | |
|||
| 217 | | **Fatigue / Instability** | Cognitive or performance drift, degradation, inconsistency | fresh, stable, fatigued | |
|||
| 218 | | **Sleep Readiness / Sleep Stability** | Transition toward sleep and ability to maintain sleep-supportive physiology | alert, winding down, sleep-ready, restless | |
|||
| 219 | | **Signal Reliability** | Whether the platform should trust the current signal estimate | usable, noisy, invalid | |
|||
| 220 | ||||
| 221 | --- |
|||
| 222 | ||||
| 223 | ## Internal Ontology Table |
|||
| 224 | ||||
| 225 | | Marker | Domain | Canonical Axis | Typical Sign | Context Sensitivity | Confidence | Candidate Protocol States | |
|||
| 226 | |---|---|---|---|---|---|---| |
|||
| 227 | | **Sensorimotor Rhythm (SMR)** | Athletic, Wellbeing, Clinical | Calm Focus; Motor Automaticity; Sleep Stability | Usually positive for calm, stable, low-noise readiness | **Medium**. Can reflect useful stability, but may also look high in low-demand or passive states | **Medium-High** in sport; **Medium** in attention; **Low-Medium** in sleep | calm-focused, stable attention, automatic, sleep-stable, under-engaged if high without behavioral engagement | |
|||
| 228 | | **Frontal Midline Theta (FMT)** | Athletic, Wellbeing | Task Engagement; Cognitive Control | **Bidirectional**. Can be beneficial when higher or lower depending on expertise and task | **High**. Must be calibrated to task and person | **Medium** | engaged, focused, over-controlled, flow-ready, cognitively strained | |
|||
| 229 | | **Theta/Beta Ratio** | Athletic, Wellbeing, Clinical | Task Engagement; Distractibility / Attention Regulation | Lower ratio often better for focused alertness | **Medium**. Stronger in ADHD-like settings than general wellness | **Medium** | distractible, engaged, impulsive, task-ready | |
|||
| 230 | | **Multi-Band Reaction Speed Profile**<br>(SMR and Beta1 up / Theta and Beta2 down) | Athletic | Calm Focus; Task Engagement; Fatigue / Instability | Positive when stable focused alertness increases and drift decreases | **Medium** | **Medium** | locked in, scattered, mentally cooked, reaction-ready | |
|||
| 231 | | **Upper Alpha / Individualized Alpha** | Wellbeing, Athletic, Clinical | Calm Focus; Memory Readiness; Perceptual Stability | Usually positive for calm attentional control and working-memory support | **Medium**. Better when individualized around IAF | **Medium-High** | stable attention, deep work, broad readiness, calm cognitive control | |
|||
| 232 | | **Alpha Band Up-Training / CVSA** | Athletic | Perceptual Breadth / Visuospatial Readiness | Positive for broad peripheral awareness and covert visuospatial attention | **Medium-High**. Likely task-specific and best with behavioral anchors | **Emerging** | tunnel vision, broad field awareness, scanning-ready | |
|||
| 233 | | **COSMI Index** | Athletic | Calm Focus; Task Engagement; Motor Readiness | Positive when SMR rises and distracting/noisy bands drop | **Medium** | **Emerging** | reaction-ready, precise, stable, mentally noisy | |
|||
| 234 | | **ACC Modulation / Arousal Regulation** | Athletic | Arousal / Activation | Positive when arousal moves toward an optimal band, not simply lower | **High**. The target is optimality, not one direction | **Emerging** | flat, optimal, overheated, panic-prone | |
|||
| 235 | | **Left Temporal Alpha (T3)** | Athletic | Motor Automaticity | Usually positive for reducing verbal-analytic interference in precision skills | **High**. Most relevant in expert self-paced precision contexts | **Medium** | automatic, overthinking, choking, fluent execution | |
|||
| 236 | | **Temporal-Frontal Coherence** | Athletic | Motor Automaticity; Cognitive Control | Often interpreted relative to reduced conscious overcontrol | **High** | **Medium** | automatic, effortful control, paralysis by analysis | |
|||
| 237 | | **FAA (Frontal Alpha Asymmetry)** | Wellbeing, Clinical | Affective Regulation / Emotional Load | Protocol-dependent; often tied to healthier approach-oriented affect | **Medium-High**. Evidence is mixed and targetability is not perfectly settled | **Medium** | distressed, regulating, settled, pre-sleep emotionally downshifted | |
|||
| 238 | | **Decoded EEG Emotion-State / Reappraisal Signal** | Wellbeing, Clinical | Affective Regulation; Cognitive Reappraisal | Positive when decoded affect-regulation pattern matches desired state | **High**. Depends on decoder training and calibration | **Emerging** | emotionally loaded, reappraising, resilient, settled | |
|||
| 239 | | **Alpha/Theta Ratio / Alpha-Theta Training** | Wellbeing, Clinical | Arousal / Activation; Affective Regulation; Sleep Readiness | Often positive for downshifting, inwardness, relaxation | **Medium** | **Medium-Low to Medium** | relaxed inward, unwinding, meditative, sleep-ready | |
|||
| 240 | | **SCPs (Slow Cortical Potentials)** | Wellbeing, Clinical, Accessibility / BCI | Task Engagement; Intentional Control | Depends on whether the protocol trains activation or deactivation | **Medium** | **Medium-High clinically** | engaged, release, intentional control, accessibility control state | |
|||
| 241 | | **PCC / DMN Downregulation** | Wellbeing | Affective Regulation; Inward Attention; Mind-Wandering Control | Positive when self-referential drift decreases during meditation-like states | **High**. Measurement often indirect unless imaging is used | **Emerging** | mind-wandering, present, inward, meditative | |
|||
| 242 | | **dlPFC HbO Up-Regulation** | Athletic, Wellbeing, Clinical | Executive Recruitment / Cognitive Load; Task Engagement | Positive up to a point. More is not always better if overload appears | **Medium** | **Medium / Emerging** | under-recruited, optimal executive engagement, overloaded | |
|||
| 243 | | **Decoded Prefrontal fNIRS Patterns** | Wellbeing | Executive Recruitment; Cognitive Control | Positive when decoded control-related patterns strengthen | **High**. Heavily decoder-dependent | **Emerging** | anti-distraction, executive-ready, controlled, resilient | |
|||
| 244 | | **Network-Based fNIRS Small-Worldness** | Wellbeing | Executive Recruitment; Cognitive Control; Fatigue / Instability | Positive when network efficiency aligns with lower cognitive load and stronger control | **High** | **Emerging** | efficient-control, overloaded, unstable-control | |
|||
| 245 | | **SMR-Linked Sleep Stability / Spindle-Adjacent Training** | Wellbeing, Clinical | Sleep Readiness / Sleep Stability | Potentially positive for sleep-supportive stability, but evidence is mixed | **Medium** | **Mixed** | winding down, sleep-stable, restless | |
|||
| 246 | | **Autism-Oriented EEG Self-Regulation Targets**<br>(SCP, beta/theta, mu / alpha etc.) | Clinical | Task Engagement; Affective Regulation; Executive Recruitment | Protocol-dependent | **High**. Highly population- and target-specific | **Emerging-Medium** | engaged, dysregulated, more regulated, overloaded | |
|||
| 247 | | **ADHD-Oriented EEG Targets**<br>(Theta/Beta, SMR, SCPs) | Clinical | Task Engagement; Cognitive Control; Fatigue / Instability | Protocol-dependent; usually lower distractibility and higher control are desirable | **Medium** | **Mixed / Low** | distractible, task-engaged, impulsive, fatigued | |
|||
| 248 | | **Tinnitus Alpha/Delta Targets** | Clinical | Affective Regulation; Sensory Distress / Symptom Load | Protocol-dependent and likely indirect | **High** | **Emerging / Mixed** | distressed, symptom-loaded, more regulated | |
|||
| 249 | | **MCI Cognitive EEG Targets**<br>(alpha, beta, SMR/theta combinations) | Clinical | Executive Recruitment; Memory Readiness; Task Engagement | Usually positive when supporting cognitive engagement and memory stability | **Medium** | **Emerging-Medium** | under-recruited, cognitively engaged, fatigued | |
|||
| 250 | ||||
| 251 | --- |
|||
| 252 | ||||
| 253 | # How to Use This in Practice |
|||
| 254 | ||||
| 255 | ## Rule 1: Do Not Build Apps Around Single Markers |
|||
| 256 | ||||
| 257 | Do **not** build: |
|||
| 258 | - an SMR app |
|||
| 259 | - an FAA app |
|||
| 260 | - a theta/beta app |
|||
| 261 | ||||
| 262 | Build: |
|||
| 263 | - a calm-focus estimator |
|||
| 264 | - an overcontrol detector |
|||
| 265 | - a sleep-readiness estimator |
|||
| 266 | - an affective regulation estimator |
|||
| 267 | - a competition-readiness estimator |
|||
| 268 | ||||
| 269 | Markers should sit underneath the estimator. |
|||
| 270 | ||||
| 271 | --- |
|||
| 272 | ||||
| 273 | ## Rule 2: Build Shared Axes First |
|||
| 274 | ||||
| 275 | A platform should estimate reusable axes before it estimates task states. |
|||
| 276 | ||||
| 277 | Recommended shared axes for version 1: |
|||
| 278 | ||||
| 279 | - Arousal / Activation |
|||
| 280 | - Task Engagement |
|||
| 281 | - Cognitive Control |
|||
| 282 | - Calm Focus |
|||
| 283 | - Motor Automaticity |
|||
| 284 | - Affective Regulation |
|||
| 285 | - Executive Recruitment |
|||
| 286 | - Fatigue / Instability |
|||
| 287 | - Sleep Readiness |
|||
| 288 | - Signal Reliability |
|||
| 289 | ||||
| 290 | These axes can then be reused across: |
|||
| 291 | - sport |
|||
| 292 | - wellbeing |
|||
| 293 | - cognitive enhancement |
|||
| 294 | - clinical training |
|||
| 295 | ||||
| 296 | --- |
|||
| 297 | ||||
| 298 | ## Rule 3: States Are Domain-Specific |
|||
| 299 | ||||
| 300 | ### Example sport states |
|||
| 301 | - under-engaged |
|||
| 302 | - calm-focused |
|||
| 303 | - over-aroused |
|||
| 304 | - over-controlled |
|||
| 305 | - automatic |
|||
| 306 | - fatigued |
|||
| 307 | ||||
| 308 | ### Example wellbeing states |
|||
| 309 | - distracted |
|||
| 310 | - stable attention |
|||
| 311 | - mentally strained |
|||
| 312 | - inward / meditative |
|||
| 313 | - emotionally loaded |
|||
| 314 | - sleep-ready |
|||
| 315 | ||||
| 316 | ### Example clinical states |
|||
| 317 | - hyperaroused |
|||
| 318 | - dysregulated |
|||
| 319 | - avoidant / shut down |
|||
| 320 | - regulated |
|||
| 321 | - impulsive / distractible |
|||
| 322 | - cognitively overloaded |
|||
| 323 | ||||
| 324 | --- |
|||
| 325 | ||||
| 326 | # Worked Example: Athletic Performance |
|||
| 327 | ||||
| 328 | ## Goal State |
|||
| 329 | **Calm-focused and competition-ready** |
|||
| 330 | ||||
| 331 | This should not be inferred from SMR alone. |
|||
| 332 | ||||
| 333 | It should be estimated from multiple axes, for example: |
|||
| 334 | ||||
| 335 | - **Calm Focus** |
|||
| 336 | - **Motor Automaticity** |
|||
| 337 | - **Arousal Optimality** |
|||
| 338 | - **Fatigue / Instability** |
|||
| 339 | ||||
| 340 | ## Example Marker Contributions |
|||
| 341 | ||||
| 342 | ### Calm Focus |
|||
| 343 | - SMR |
|||
| 344 | - Upper Alpha |
|||
| 345 | - Theta/Beta Ratio |
|||
| 346 | - COSMI components |
|||
| 347 | ||||
| 348 | ### Motor Automaticity |
|||
| 349 | - T3 Alpha |
|||
| 350 | - Temporal-Frontal Coherence |
|||
| 351 | - Expert-specific FMT effects |
|||
| 352 | ||||
| 353 | ### Arousal Optimality |
|||
| 354 | - ACC modulation |
|||
| 355 | - stress-sensitive beta features |
|||
| 356 | - optional HRV / respiration if available |
|||
| 357 | ||||
| 358 | ### Fatigue / Instability |
|||
| 359 | - performance drift |
|||
| 360 | - RT variability |
|||
| 361 | - dlPFC HbO load |
|||
| 362 | - multi-band degradation over time |
|||
| 363 | ||||
| 364 | ## Example State Definition |
|||
| 365 | ||||
| 366 | A rough internal rule might be: |
|||
| 367 | ||||
| 368 | **competition-ready** when: |
|||
| 369 | - Calm Focus is high |
|||
| 370 | - Automaticity is high |
|||
| 371 | - Arousal is within an optimal band |
|||
| 372 | - Fatigue is low |
|||
| 373 | - Signal quality is acceptable |
|||
| 374 | ||||
| 375 | This means: |
|||
| 376 | ||||
| 377 | **SMR does not directly become “competition-ready”** |
|||
| 378 | It becomes one weighted contributor to the **Calm Focus** axis, which then contributes to the final **competition-ready** state. |
|||
| 379 | ||||
| 380 | --- |
|||
| 381 | ||||
| 382 | # Worked Example: From SMR to Calm Focus |
|||
| 383 | ||||
| 384 | ## Wrong approach |
|||
| 385 | **SMR = calm focus** |
|||
| 386 | ||||
| 387 | ## Better approach |
|||
| 388 | SMR contributes to a **Calm Focus** construct together with other markers. |
|||
| 389 | ||||
| 390 | Example conceptual composite: |
|||
| 391 | ||||
| 392 | **Calm Focus** is estimated from: |
|||
| 393 | - SMR |
|||
| 394 | - Upper Alpha |
|||
| 395 | - High-Beta or tension marker |
|||
| 396 | - Theta/Beta Ratio |
|||
| 397 | - optional EMG / motion noise |
|||
| 398 | - optional behavioral stability |
|||
| 399 | ||||
| 400 | Then the athlete’s state is determined from that axis plus others. |
|||
| 401 | ||||
| 402 | This gives: |
|||
| 403 | ||||
| 404 | **SMR -> Calm Focus axis -> Competition-Ready state** |
|||
| 405 | ||||
| 406 | But in practice the real flow is: |
|||
| 407 | ||||
| 408 | **SMR + other markers -> Calm Focus axis** |
|||
| 409 | then |
|||
| 410 | **Calm Focus + other axes -> Competition-Ready state** |
|||
| 411 | ||||
| 412 | --- |
|||
| 413 | ||||
| 414 | # Platform Design Recommendation |
|||
| 415 | ||||
| 416 | The platform should implement: |
|||
| 417 | ||||
| 418 | ## 1. Marker Registry |
|||
| 419 | Stores: |
|||
| 420 | - what the marker is |
|||
| 421 | - how it is computed |
|||
| 422 | - where it is measured |
|||
| 423 | - required preprocessing |
|||
| 424 | - domain relevance |
|||
| 425 | - evidence confidence |
|||
| 426 | - known caveats |
|||
| 427 | ||||
| 428 | ## 2. Axis Estimators |
|||
| 429 | Reusable models that combine markers into construct axes. |
|||
| 430 | ||||
| 431 | Examples: |
|||
| 432 | - Calm Focus Estimator |
|||
| 433 | - Arousal Estimator |
|||
| 434 | - Affective Regulation Estimator |
|||
| 435 | - Executive Recruitment Estimator |
|||
| 436 | ||||
| 437 | ## 3. State Decoders |
|||
| 438 | Protocol-specific mappings from axes to app states. |
|||
| 439 | ||||
| 440 | Examples: |
|||
| 441 | - Sport readiness decoder |
|||
| 442 | - Sleep readiness decoder |
|||
| 443 | - Mood regulation decoder |
|||
| 444 | - ADHD attention-state decoder |
|||
| 445 | - Trauma regulation decoder |
|||
| 446 | ||||
| 447 | ## 4. Feedback Policy Engine |
|||
| 448 | Decides what the app does once state is inferred. |
|||
| 449 | ||||
| 450 | Examples: |
|||
| 451 | - increase / decrease feedback intensity |
|||
| 452 | - adapt task difficulty |
|||
| 453 | - hold state |
|||
| 454 | - encourage down-regulation |
|||
| 455 | - reinforce best-state similarity |
|||
| 456 | - trigger clinician note or safety pause |
|||
| 457 | ||||
| 458 | --- |
|||
| 459 | ||||
| 460 | # Summary |
|||
| 461 | ||||
| 462 | ## Markers |
|||
| 463 | Evidence-backed measurements and control handles |
|||
| 464 | ||||
| 465 | ## Construct Axes |
|||
| 466 | Reusable latent dimensions that markers contribute to |
|||
| 467 | ||||
| 468 | ## Task-Specific States |
|||
| 469 | Protocol-level control abstractions built from axes |
|||
| 470 | ||||
| 471 | ## Final Rule |
|||
| 472 | ||||
| 473 | **Markers are not states.** |
|||
| 474 | **Axes are reusable constructs.** |
|||
| 475 | **States are protocol-specific regions in axis space.** |
|||
| 476 | ||||
| 477 | So the correct abstraction is: |
|||
| 478 | ||||
| 479 | **signals -> markers -> axes -> states -> feedback policy** |
|||
| 480 | ||||
| 481 | That is the foundation for a neurotechnology platform that supports: |
|||
| 482 | - athletic performance products |
|||
| 483 | - cognitive enhancement products |
|||
| 484 | - wellbeing products |
|||
| 485 | - clinical neurofeedback products |
|||
| 486 | - future manifold / learned-representation layers |
