Papers › Listen, Attend and Spell

Listen, Attend and Spell

5 Aug 2015arXiv:1508.01211archive 2025-07-28

William Chan, Navdeep Jaitly, Quoc V. Le, Oriol Vinyals

We present Listen, Attend and Spell (LAS), a neural network that learns to transcribe speech utterances to characters. Unlike traditional DNN-HMM models, this model learns all the components of a speech recognizer jointly. Our system has two components: a listener and a speller. The listener is a pyramidal recurrent network encoder that accepts filter bank spectra as inputs. The speller is an attention-based recurrent network decoder that emits characters as outputs. The network produces character sequences without making any independence assumptions between the characters. This is the key improvement of LAS over previous end-to-end CTC models. On a subset of the Google voice search task, LAS achieves a word error rate (WER) of 14.1% without a dictionary or a language model, and 10.3% with language model rescoring over the top 32 beams. By comparison, the state-of-the-art CLDNN-HMM model achieves a WER of 8.0%.

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="1508.01211")

Code

Syntology Ran 12 of 51 code samples harvested from 12 repositories linked to this paper; 39 have no recorded run. Of those that ran: 1 ran · honoured contract; 1 ran · violated contract; 8 ran · our draft was wrong; 2 ran · fixture could not drive it.

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

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

Alexander-H-Liu/End-to-end-ASR-Pytorch mentioned on GitHubpytorchMIT report
JJoving/SMLAT mentioned on GitHubpytorch report
MysteryVaibhav/LAS mentioned on GitHubpytorch report
WindQAQ/listen-attend-and-spell mentioned on GitHubtfApache-2.0 report
anjandeepsahni/automatic_speech_recognition mentioned on GitHubpytorchMIT report
anti-antares/Deep_Learning_Project_4 mentioned on GitHubpytorch report
biyoml/End-to-End-Mandarin-ASR mentioned on GitHubpytorch report
biyoml/Pytorch-End-to-End-ASR-on-TIMIT mentioned on GitHubpytorch report
colaprograms/speechify mentioned on GitHubtf report
cosmoquester/speech-recognition mentioned on GitHubtfMIT report
custodio78/Speech_Recognition mentioned on GitHubtfMIT report
foamliu/Listen-Attend-Spell mentioned on GitHubpytorchMIT report
foamliu/Listen-Attend-Spell-v2 mentioned on GitHubpytorchMIT report
foamliu/Listen-Attend-and-Spell mentioned on GitHubpytorchMIT report
hgstudent/las mentioned on GitHubtf report
jackaduma/LAS_Mandarin_PyTorch mentioned on GitHubpytorch report
jackjhliu/End-to-End-Mandarin-ASR mentioned on GitHubpytorch report
kaituoxu/Listen-Attend-Spell mentioned on GitHubpytorch report
mnm-rnd/elsa-voice-asr mentioned on GitHubpytorchMIT report
msalhab96/Listen-Attend-and-Spell mentioned on GitHubpytorch report
msalhab96/SpeeQ mentioned on GitHubpytorch report
neil-zeng/asr mentioned on GitHubpytorchMIT report
qute012/las-ko mentioned on GitHubpytorch report
s3prl/End-to-end-ASR-Pytorch mentioned on GitHubpytorchMIT report
sanjanamallya/speech_to_text mentioned on GitHubpytorch report
sciforce/phones-las mentioned on GitHubtfApache-2.0 report
sooftware/End-to-End-Speech-Recognition-Models mentioned on GitHubpytorchApache-2.0 report
sooftware/End-to-end-Speech-Recognition mentioned on GitHubpytorch report
sooftware/Fairseq-Listen-Attend-Spell mentioned on GitHubpytorch report
sooftware/OpenSpeech mentioned on GitHubpytorchMIT report
switiz/las.pytorch mentioned on GitHubpytorchApache-2.0 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

51 samples harvested; 12 ran; 1 honoured the contract we drafted; 39 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.

1ran · honoured contract
1ran · violated contract
8ran · our draft was wrong
2ran · fixture could not drive it
39unverified

Licence: 9 of the 51 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 12 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.

add_asr_eval_argument sooftware/Fairseq-Listen-Attend-Spell/fairseq_las/infer.py community (archive-listed) ran · our draft was wrong MIT (permissive) · af0229a45f77d3fb · report
beam_decode jackaduma/LAS_Mandarin_PyTorch/test_asr.py community (archive-listed) ran · our draft was wrong MIT (permissive) · a03edcfe518e7f8b · report
collate_test sanjanamallya/speech_to_text/speech_to_text.py community (archive-listed) ran · our draft was wrong no licence file found · pointer only · 593b181ec23986e4 · report
collate_train sanjanamallya/speech_to_text/speech_to_text.py community (archive-listed) ran · our draft was wrong no licence file found · pointer only · 86b35c8530964541 · report
detrend colaprograms/speechify/util/spectrogram_generator.py community (archive-listed) ran · violated contract fingerprinted no licence file found · pointer only · 4e5663ad841caf95 · report
get_dataset_itr sooftware/Fairseq-Listen-Attend-Spell/fairseq_las/infer.py community (archive-listed) ran · our draft was wrong MIT (permissive) · 3b409833fb8f8509 · report
get_result msalhab96/Listen-Attend-and-Spell/inference.py community (archive-listed) ran · our draft was wrong fingerprinted no licence file found · pointer only · 8dea3694156cfb07 · report
get_top_candidates msalhab96/Listen-Attend-and-Spell/inference.py community (archive-listed) ran · our draft was wrong fingerprinted no licence file found · pointer only · 9ac4e3e2b4a3f182 · report
keep_top_seq msalhab96/Listen-Attend-and-Spell/inference.py community (archive-listed) ran · fixture could not drive it fingerprinted no licence file found · pointer only · cbf9a742d462dc80 · report
prepare_result_files sooftware/Fairseq-Listen-Attend-Spell/fairseq_las/infer.py community (archive-listed) ran · our draft was wrong MIT (permissive) · d6980854a04a00a8 · report
signal_to_spectrogram colaprograms/speechify/util/spectrogram_generator.py community (archive-listed) ran · fixture could not drive it fingerprinted no licence file found · pointer only · 4d8d193470ad0970 · report
unitlinear colaprograms/speechify/util/spectrogram_generator.py community (archive-listed) ran · honoured contract fingerprinted no licence file found · pointer only · b79342d36def2329 · report
SpeechCollateFn anjandeepsahni/automatic_speech_recognition/Code/dataset.py community (archive-listed) unverified MIT (permissive) · bc50e5bc9861a026 · report
accuracy foamliu/Listen-Attend-Spell/utils.py community (archive-listed) unverified MIT (permissive) · 5636e2d24b43d1a9 · report
beam_search anjandeepsahni/automatic_speech_recognition/Code/beamsearch.py community (archive-listed) unverified MIT (permissive) · 515dc628f1216f81 · report
bilstm WindQAQ/listen-attend-and-spell/las/ops.py community (archive-listed) unverified Apache-2.0 (permissive) · da03745c4d1dc159 · report
bilstm sciforce/phones-las/las/ops.py community (archive-listed) unverified Apache-2.0 (permissive) · 5e4b9b4da2357031 · report
build_LFR_features foamliu/Listen-Attend-Spell/data_gen.py community (archive-listed) unverified MIT (permissive) · 04f3eb7d85354749 · report
cer switiz/las.pytorch/utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 5eeba5cf42081f13 · report
check_envirionment switiz/las.pytorch/utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 5cb79c0f243a5040 · report
compute_loss_sigmoid sciforce/phones-las/model_helper.py community (archive-listed) unverified Apache-2.0 (permissive) · 3eaa88271428a793 · report
create_attention_images WindQAQ/listen-attend-and-spell/utils/image_utils.py community (archive-listed) unverified Apache-2.0 (permissive) · f820a5f4353c8d50 · report
create_vocab_table WindQAQ/listen-attend-and-spell/utils/vocab_utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 6ea3a110248fc75e · report
dense_to_sparse WindQAQ/listen-attend-and-spell/utils/metrics_utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 5c2d13de9a6666e7 · report
edit_distance WindQAQ/listen-attend-and-spell/utils/metrics_utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 49847ff466218c84 · report
encode_text sciforce/phones-las/text_preprocess.py community (archive-listed) unverified Apache-2.0 (permissive) · 24b568092a10eca5 · report
extract_mfcc WindQAQ/listen-attend-and-spell/vctk/preprocess.py community (archive-listed) unverified Apache-2.0 (permissive) · 4e09b2d42a5a90a2 · report
get_iterator WindQAQ/listen-attend-and-spell/utils/iterator_utils.py community (archive-listed) unverified Apache-2.0 (permissive) · bb990c536558a8da · report
get_learning_rate foamliu/Listen-Attend-Spell/utils.py community (archive-listed) unverified MIT (permissive) · 591851e781d27201 · report
load_dataset switiz/las.pytorch/utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 8210be28ca690ac0 · report
load_vocab WindQAQ/listen-attend-and-spell/utils/vocab_utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 75776719b114cdb1 · report
lstm_cell WindQAQ/listen-attend-and-spell/las/ops.py community (archive-listed) unverified Apache-2.0 (permissive) · 4fc2dd53c063d576 · report
lstm_cell sciforce/phones-las/las/ops.py community (archive-listed) unverified Apache-2.0 (permissive) · 8beb2dfe1d9a90a4 · report
make_example sciforce/phones-las/preprocess_all.py community (archive-listed) unverified Apache-2.0 (permissive) · fbf7b91f4fcb63fb · report
pad_audio_sequences custodio78/Speech_Recognition/sr_model_utils.py community (archive-listed) unverified MIT (permissive) · a1a21a20c140d0be · report
pad_collate foamliu/Listen-Attend-Spell-v2/data_gen.py community (archive-listed) unverified MIT (permissive) · 7b22196dd6d0fb21 · report
pad_list foamliu/Listen-Attend-Spell/utils.py community (archive-listed) unverified MIT (permissive) · ce10a394eb6dd5f4 · report
pad_txt_sequences custodio78/Speech_Recognition/sr_model_utils.py community (archive-listed) unverified MIT (permissive) · be04197d5ade9e2f · report
parse_trans WindQAQ/listen-attend-and-spell/vctk/preprocess.py community (archive-listed) unverified Apache-2.0 (permissive) · 465de61d8fb45c5a · report
phrase_to_binfs sciforce/phones-las/infer.py community (archive-listed) unverified Apache-2.0 (permissive) · bf95c99f28cf2c1d · report
process_dataset WindQAQ/listen-attend-and-spell/utils/dataset_utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 00ec8a3f07cfb9b9 · report
process_line sciforce/phones-las/text_preprocess.py community (archive-listed) unverified Apache-2.0 (permissive) · 78f8ed248b3655ea · report
process_speakers WindQAQ/listen-attend-and-spell/vctk/preprocess.py community (archive-listed) unverified Apache-2.0 (permissive) · 05d046c3a10a8bb4 · report
pyramidal_stack WindQAQ/listen-attend-and-spell/las/ops.py community (archive-listed) unverified Apache-2.0 (permissive) · 5eefaae1dce38d90 · report
read_dataset WindQAQ/listen-attend-and-spell/utils/dataset_utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 5c1b9de46d48a986 · report
sequence_loss_sigmoid sciforce/phones-las/model_helper.py community (archive-listed) unverified Apache-2.0 (permissive) · 5b0af40833a50caf · report
serving_input_factory sciforce/phones-las/export.py community (archive-listed) unverified Apache-2.0 (permissive) · 26b39a8d6aa48289 · report
soft2hard_attention sciforce/phones-las/infer.py community (archive-listed) unverified Apache-2.0 (permissive) · 3f5f00347c16f25b · report
spec_augment foamliu/Listen-Attend-Spell/data_gen.py community (archive-listed) unverified MIT (permissive) · 7dc944e5f14aedce · report
split_txts custodio78/Speech_Recognition/sr_data_utils.py community (archive-listed) unverified MIT (permissive) · 04400535de0c770b · report
train sanjanamallya/speech_to_text/speech_to_text.py community (archive-listed) unverified no licence file found · pointer only · 226df6a3394d1c2d · report

Tasks

DecoderLanguage ModelingLanguage ModellingReading ComprehensionSpeech Recognition

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

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