Papers › LipNet: End-to-End Sentence-level Lipreading

LipNet: End-to-End Sentence-level Lipreading

5 Nov 2016arXiv:1611.01599archive 2025-07-28

Yannis M. Assael, Brendan Shillingford, Shimon Whiteson, Nando de Freitas

Lipreading is the task of decoding text from the movement of a speaker's mouth. Traditional approaches separated the problem into two stages: designing or learning visual features, and prediction. More recent deep lipreading approaches are end-to-end trainable (Wand et al., 2016; Chung & Zisserman, 2016a). However, existing work on models trained end-to-end perform only word classification, rather than sentence-level sequence prediction. Studies have shown that human lipreading performance increases for longer words (Easton & Basala, 1982), indicating the importance of features capturing temporal context in an ambiguous communication channel. Motivated by this observation, we present LipNet, a model that maps a variable-length sequence of video frames to text, making use of spatiotemporal convolutions, a recurrent network, and the connectionist temporal classification loss, trained entirely end-to-end. To the best of our knowledge, LipNet is the first end-to-end sentence-level lipreading model that simultaneously learns spatiotemporal visual features and a sequence model. On the GRID corpus, LipNet achieves 95.2% accuracy in sentence-level, overlapped speaker split task, outperforming experienced human lipreaders and the previous 86.4% word-level state-of-the-art accuracy (Gergen et al., 2016).

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="1611.01599")

Code

Syntology Ran 0 of 15 code samples harvested from 3 repositories linked to this paper; 15 have no recorded run.

By repository: official repository: 5 samples from 1 repository, 0 ran; community (archive-listed): 10 samples from 2 repositories, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

13 repositories listed; official and paper-mentioned ones first.

rizkiarm/LipNet officialmentioned on GitHubtfMIT report
Abishalini/LipReadingGUI mentioned on GitHub report
Fengdalu/LipNet-PyTorch mentioned on GitHubpytorch report
LiZhenghua0311/lip mentioned on GitHubtfMIT report
PlatDrake2875/LipNet mentioned on GitHubpytorchMIT report
hero9968/lipnet-python mentioned on GitHubtfMIT report
ms8909/LipONet mentioned on GitHubtfMIT report
pjenpoomjai/LipNet mentioned on GitHubtfApache-2.0 report
sailordiary/LipNet-PyTorch mentioned on GitHubpytorchBSD-3-Clause report
ski-net/lipnet mentioned on GitHubmxnet report
speech-separation-hse/video-features mentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

15 samples harvested; 0 ran; 0 honoured the contract we drafted; 15 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

15unverified

Licence: 0 of the 15 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 3 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

ctc_lambda_func rizkiarm/LipNet/lipnet/core/loss.py official repository unverified MIT (permissive) · 8181d94a6381a30a · report
decode rizkiarm/LipNet/lipnet/core/decoders.py official repository unverified MIT (permissive) · 07d26c38ea615861 · report
labels_to_text rizkiarm/LipNet/lipnet/lipreading/helpers.py official repository unverified MIT (permissive) · ba5f0f129eba0ac3 · report
text_to_labels rizkiarm/LipNet/lipnet/lipreading/helpers.py official repository unverified MIT (permissive) · 071ed9f14cb9d384 · report
threadsafe_generator rizkiarm/LipNet/lipnet/helpers/threadsafe.py official repository unverified MIT (permissive) · 6656877b73807105 · report
ctc_collate sailordiary/LipNet-PyTorch/dataloader.py community (archive-listed) unverified BSD-3-Clause (permissive) · 88b8acae6777424e · report
get_file_extension pjenpoomjai/LipNet/common/files.py community (archive-listed) unverified Apache-2.0 (permissive) · bc11ac6762ddee1c · report
is_dir pjenpoomjai/LipNet/common/files.py community (archive-listed) unverified Apache-2.0 (permissive) · 0ab02e700216530c · report
is_file pjenpoomjai/LipNet/common/files.py community (archive-listed) unverified Apache-2.0 (permissive) · 74ffcb74cead6878 · report
read_data sailordiary/LipNet-PyTorch/augmentation.py community (archive-listed) unverified BSD-3-Clause (permissive) · f3ec786915134721 · report
round sailordiary/LipNet-PyTorch/augmentation.py community (archive-listed) unverified BSD-3-Clause (permissive) · 6460635662358375 · report
round sailordiary/LipNet-PyTorch/dataloader.py community (archive-listed) unverified BSD-3-Clause (permissive) · 80b5790c95657203 · report
tokenize pjenpoomjai/LipNet/core/decoding/spell.py community (archive-listed) unverified Apache-2.0 (permissive) · 9108c44188636656 · report
untokenize pjenpoomjai/LipNet/core/decoding/spell.py community (archive-listed) unverified Apache-2.0 (permissive) · 8b832c2b8bf29a51 · report
video_to_frames pjenpoomjai/LipNet/core/video.py community (archive-listed) unverified Apache-2.0 (permissive) · face0a3bb9c1c095 · report

Tasks

General ClassificationLipreadingSentence

Results from the paper archive 2025-07-28

TaskDatasetModelMetricValueRank at snapshotLeaderboardReport
Lipreading GRID corpus (mixed-speech) LipNet Word Error Rate (WER) 4.6 #5 of 5 Archive leaderboard report

Ranks are positions in the archive's leaderboards as they stood at the 2025-07-28 snapshot. Results published since then are not among these rows, so a rank here is not a current standing.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections