Research: the science of post-keyboard input¶
YazSes is a dictation tool, but the question behind it is bigger: what does a computer interface look like when the keyboard stops being the bottleneck?
This section is our public research notebook on eye, voice, and muscle/brain input — what the measurements actually say as of mid-2026, what we shipped because of them, and the questions nobody has answered yet. Every number is cited. Every technique has to clear one bar: it must run on an ordinary laptop CPU, offline, with no telemetry. That constraint is the research program, not a limitation of it.
The 30-second version¶
If you read nothing else, these five results are the whole argument:
- Speech is the highest-bandwidth channel a healthy human has. 153 WPM spoken vs 52 WPM typed, measured head-to-head in the same lab study (Ruan et al., 2016).
- Offline speech recognition passed the cloud reference in 2026. A 0.6B transducer now beats whisper-large-v3 on word-error rate at roughly 30× realtime on a CPU (NVIDIA, benchmark).
- Webcam gaze is honest at ~2–4°, which is centimetres on screen. That is enough to know which window you mean, never which character (Sugano et al., scoping review).
- The reliable "brain" switches in consumer EEG are not brain signals. Blink and jaw-clench are muscle and eye artifacts leaking into the EEG — so put the electrode on the muscle, where the same signal is orders of magnitude cleaner (Li et al., Tibrewal et al.).
- Muscle interfaces are triggers, not typewriters. Meta's landmark calibration-free sEMG wristband handwrites at 20.9 WPM — a seventh of speech (Kaifosh et al., Nature 2025). The muscle should carry the intent to speak; the voice carries the words.
Start here — pick your door¶
-
I'm a researcher. Read the three survey pages below, then take an open question. Every subsystem sits behind a swappable interface, so an experiment replaces one box and leaves the rest of the pipeline intact — platform details & how to cite.
-
I'm a student. There are eight thesis- and course-sized projects with an open issue, a defined evaluation, and a maintainer who reviews quickly — see the list. Supervisors welcome; scoping a variant for your semester is a Discussion away.
-
I build things. Each finding names the feature it produced and the code that implements it — see the traceability table. All of it is Apache-2.0 and runs on your machine.
-
I can't use a keyboard. This research exists because the assistive-tech market prices hands-free computing at $10,000–20,000 and skips Linux entirely — the accessibility stakes and the hands-free setup guide.
The three surveys¶
-
Eye control What a $20 webcam can and cannot know about where you look — and why "coarse but honest" beats "precise but fake".
-
Voice control Local speech recognition passed the cloud in 2025–26. The numbers, the latency physics, and the whisper channel.
-
Muscle & brain control Why a $50 EMG electrode beats a $1,000 EEG headset for controlling a computer — measured, not vibes.
How fast can a human get text into a computer?¶
Every input modality is ultimately a bandwidth question. These are measured text-entry rates, not projections:
---
config:
themeVariables:
xyChart:
backgroundColor: "transparent"
titleColor: "var(--md-default-fg-color)"
xAxisLabelColor: "var(--md-default-fg-color)"
yAxisLabelColor: "var(--md-default-fg-color)"
xAxisTitleColor: "var(--md-default-fg-color)"
yAxisTitleColor: "var(--md-default-fg-color)"
xAxisTickColor: "var(--md-default-fg-color--lighter)"
yAxisTickColor: "var(--md-default-fg-color--lighter)"
xAxisLineColor: "var(--md-default-fg-color--lighter)"
yAxisLineColor: "var(--md-default-fg-color--lighter)"
plotColorPalette: "#8f6fd6"
---
xychart-beta
title "Measured text-entry rate by modality (words per minute)"
x-axis ["Speech", "Touch keyboard", "sEMG handwriting", "Gaze typing"]
y-axis "Words per minute" 0 --> 170
bar [153, 52, 20.9, 19.9] | Modality | Rate | Source | Conditions |
|---|---|---|---|
| Speech (voiced) | 153 WPM | Ruan et al., 2016 | Lab, English, transcription task |
| Touch keyboard | 52 WPM | Ruan et al., 2016 | Same study, same participants |
| sEMG handwriting | 20.9 WPM | Kaifosh et al., 2025 | Wristband, calibration-free, held-out users |
| Gaze typing (dwell) | 19.9 WPM | Majaranta et al., 2009 | After 10 training sessions; 6.9 WPM on session 1 |
Consumer EEG doesn't get a bar because it isn't in the same order of magnitude: a consumer-grade headset delivers roughly 12 bits/min of information — measured online with a 14-channel consumer headset (Lin et al., 2014) — which is on the order of a couple of characters per minute. Even the record-setting laboratory speller (Chen et al., PNAS 2015) is a wet-electrode research rig, not something you wear to work.
The design conclusion is the one the whole project is built on: let voice carry the words, and use everything else to say where and whether.
Where each modality actually sits¶
The same picture on the two axes that decide whether something ships: how reliably the signal decodes on consumer hardware, and how much daily utility it returns per unit of user effort.
quadrantChart
title Input modalities on consumer hardware (2026)
x-axis Low decode reliability --> High decode reliability
y-axis Low daily utility --> High daily utility
quadrant-1 Ship it
quadrant-2 Promising, needs work
quadrant-3 Research only
quadrant-4 Niche but real
"Voice (local STT)": [0.88, 0.92]
"Whispered-vs-voiced switch": [0.72, 0.55]
"Webcam gaze (zone-level)": [0.62, 0.58]
"Webcam gaze (caret-level)": [0.15, 0.75]
"EMG squeeze trigger": [0.78, 0.45]
"EMG typing": [0.55, 0.15]
"EEG blink/jaw artifacts": [0.35, 0.2]
"EEG motor imagery": [0.12, 0.3]
"Lip reading (AVSR)": [0.4, 0.35] Placement is our synthesis of the measurements cited on the three pages — each page gives the numbers and the sources behind its dots.
Forty-five years in one line¶
Post-keyboard input is not a new idea. What changed is that the hardware requirement collapsed from a research lab to the laptop you already own:
flowchart LR
A["<b>1980–2009</b><br/>Lab demos<br/>Speech + pointing works,<br/>but only on a research rig"]
B["<b>2009–2016</b><br/>Rates get measured<br/>Gaze 19.9 WPM · speech 153 WPM<br/>vs 52 WPM typed"]
C["<b>2022–2025</b><br/>Models open up<br/>Whisper open-weight ·<br/>sEMG generalises across users"]
D["<b>2026</b><br/>It fits on a laptop<br/>0.6B CPU model beats the<br/>old cloud reference"]
A --> B --> C --> D | Year | Milestone | Why it mattered | Source |
|---|---|---|---|
| 1980 | Put-That-There | Pointing plus speech resolves "this" — the founding demo of multimodal input | Bolt |
| 2009 | Adjustable-dwell gaze typing | Gaze text entry reaches 19.9 WPM after training | Majaranta et al. |
| 2015 | Implicit gaze calibration | 2.9° from mouse clicks alone — no calibration ritual | Sugano et al. |
| 2016 | Speech vs keyboard, head to head | 153 vs 52 WPM in the same lab task | Ruan et al. |
| 2022 | Whisper; DualVoice | Robust ASR becomes open-weight; whispering proposed as a command channel | Radford et al., Rekimoto |
| 2024 | GazePointAR | Gaze substituted into the query before the model sees it | Lee et al. |
| 2025 | Generic sEMG interface | Calibration-free decoding across ~11,000 people | Kaifosh et al. |
| 2026 | CPU-class ASR overtakes the cloud reference | A 0.6B transducer beats whisper-large-v3 at ~30× realtime | NVIDIA, benchmark |
How this feeds the product¶
Every YazSes perception feature traces to a finding on these pages, and each finding names the feature it produced:
| Finding | What we shipped |
|---|---|
| Webcam gaze is ~2–4° → zone-level only | Glance-Type routes dictation to the pane you look at, never the caret |
| Gaze grounds speech; a second modality commits | Gaze deixis: "close this" acts on the looked-at window |
| Two eyes estimating one gaze give free per-frame confidence | Divergent eyes → fall back to the focused window instead of guessing |
| Whispered speech has no fundamental frequency | Sotto-voce channel: whisper = command, voice = text |
| A dedicated EMG electrode dominates EEG artifacts | EMG squeeze-to-talk backend (YESP serial protocol) |
| Transducer models emit nothing on silence | yazses features enable stt-parakeet — no [BLANK_AUDIO] hallucinations |
| Parakeet TDT beats whisper-large-v3 at small-model CPU cost | Pluggable SttEngine seam, so the engine is a config line |
Key terms¶
New to this field? These are the words the three pages lean on.
- ASR / STT
- Automatic speech recognition / speech-to-text — turning audio into words.
- WER
- Word error rate: the percentage of words an ASR system gets wrong. Lower is better; ~6% is state of the art on hard multi-domain audio.
- RTF / "×realtime"
- How much faster than realtime a model decodes. 30× realtime means one second of audio is transcribed in ~33 ms.
- EMG (electromyography)
- Recording the electrical activity of a muscle with a surface electrode. sEMG is the non-invasive, skin-surface variety.
- EEG (electroencephalography)
- Recording brain electrical activity at the scalp. High noise, low bandwidth, and easily contaminated by muscle and eye movement.
- BCI
- Brain–computer interface. Non-invasive (EEG headsets) and invasive (implanted electrodes) are entirely different performance regimes — nothing on these pages applies to the invasive kind.
- Deixis
- Words whose meaning depends on context — "this", "that", "here". Resolving them is what makes "close this" work.
- Midas touch problem
- In gaze interfaces, the fact that you look at everything, so looking cannot by itself mean "select". A second signal must commit the action.
- Dwell
- Holding your gaze on a target for a set time to select it — the classic Midas-touch workaround, and the slowest part of gaze typing.
- AAC
- Augmentative and alternative communication — the assistive devices people use when speech or typing isn't available.
Open questions — we want your data¶
Each survey page ends with open research questions, and they are genuinely open: if you can measure something on your own hardware — a different webcam, a different accent, a DIY EMG rig — that is exactly the evidence this project runs on.
| Question | Page | What would settle it |
|---|---|---|
| Does implicit calibration from mouse clicks stay stable over weeks? | Eye control | Longitudinal desktop data — nobody has published any |
| Does eye-agreement predict gaze error? | Eye control | Per-frame confidence vs ground truth, across faces and lighting |
| What is the false-"whisper" rate across voices? | Voice control | Voicing-gate verdicts on quiet, breathy and tonal speakers |
| What does phrase boosting cost on ONNX transducers? | Voice control | A minimal reimplementation and its WER/latency delta |
| What is a real EMG false-activation rate over a workday? | Muscle & brain | FP/hour logs from anyone running a squeeze trigger |
Join the discussion → · Browse contributor lanes → · Student & thesis projects →
How to cite¶
The system is described in a preprint, and every page in this section is part of the same public record:
@article{seyedkazemi2026yazses,
title = {YazSes: An Offline, Privacy-First, Cross-Platform
Hold-to-Talk Voice-Dictation System},
author = {Seyedkazemi Ardebili, Mohsen},
journal = {arXiv preprint arXiv:2607.28878},
year = {2026},
url = {https://arxiv.org/abs/2607.28878}
}
GitHub's Cite this repository button reads the same metadata from CITATION.cff. If you cite a specific measurement, please cite the primary source below rather than this page — we are a synthesis, not the origin.
References¶
Sources for every number on this page. Evidence grade says how the figure was produced: measured (peer-reviewed measurement), vendor (claimed by the maker, not independently reproduced), secondary (review or benchmark write-up).
- Bolt, R. A. "Put-that-there: Voice and gesture at the graphics interface." SIGGRAPH '80, 1980. doi:10.1145/800250.807503 — measured
- Majaranta, P., Ahola, U.-K., Špakov, O. "Fast gaze typing with an adjustable dwell time." CHI '09, 2009. doi:10.1145/1518701.1518758 — measured (6.9 → 19.9 WPM over ten sessions)
- Sugano, Y., Matsushita, Y., Sato, Y., Koike, H. "Appearance-based gaze estimation with online calibration from mouse operations." IEEE Transactions on Human-Machine Systems 45(6), 2015. doi:10.1109/THMS.2015.2400434 — measured
- Ruan, S., Wobbrock, J. O., Liou, K., Ng, A., Landay, J. "Comparing speech and keyboard text entry for short messages in two languages on touchscreen phones." arXiv:1608.07323, 2016. arXiv — measured (153 vs 52 WPM, English)
- Radford, A. et al. "Robust speech recognition via large-scale weak supervision." arXiv:2212.04356, 2022. arXiv — measured
- Rekimoto, J. "DualVoice: Speech interaction that discriminates between normal and whispered voice input." UIST '22, 2022. doi:10.1145/3526113.3545685 — measured
- Lee, J. et al. "GazePointAR: A context-aware multimodal voice assistant for pronoun disambiguation in wearable augmented reality." CHI '24, 2024. doi:10.1145/3613904.3642230 — measured
- Kaifosh, P. et al. "A generic non-invasive neuromotor interface for human-computer interaction." Nature, 2025. doi:10.1038/s41586-025-09255-w — measured (20.9 WPM handwriting; >90% offline gesture decoding on held-out users)
- Chen, X. et al. "High-speed spelling with a noninvasive brain-computer interface." PNAS 112(44), 2015. doi:10.1073/pnas.1508080112 — measured (wet-electrode laboratory rig)
- Lin, Y.-P., Wang, Y., Jung, T.-P. "Assessing the feasibility of online SSVEP decoding in human walking using a consumer EEG headset." Journal of NeuroEngineering and Rehabilitation 11:119, 2014. doi:10.1186/1743-0003-11-119 — measured (ITR above 12 bits/min, 14-channel consumer headset)
- Li, Y., He, S., Huang, Q., Gu, Z., Yu, Z. L. "A EOG-based switch and its application for start/stop control of a wheelchair." Neurocomputing 275, 2018. doi:10.1016/j.neucom.2017.09.085 — measured (99.5% accuracy, 1.3 s response, 0.10 false positives/min)
- Tibrewal, N. et al. "Classification of motor imagery EEG using deep learning increases performance in inefficient BCI users." PLOS ONE, 2022. doi:10.1371/journal.pone.0268880 — measured
- "Methodological recommendations for webcam-based eye tracking: a scoping review." Research Methods in Applied Linguistics, 2025. ScienceDirect — secondary
- NVIDIA. "Parakeet TDT 0.6B" model card. Hugging Face — vendor
- Independent CPU benchmark, Whisper vs Parakeet TDT. snailtext.app — secondary
Provenance: these pages condense four state-of-the-art dossiers compiled 2026-08-07 with live web research, plus the decisions recorded in the project's ADRs. Every citation above was resolved against Crossref or the arXiv API before publication. Where a number is vendor-claimed rather than independently measured, we say so.