Skip to content

Instantly share code, notes, and snippets.

View JRMeyer's full-sized avatar
👋

Josh Meyer JRMeyer

👋
View GitHub Profile
@JRMeyer
JRMeyer / ctc_decoder.py
Last active July 28, 2020 01:02 — forked from awni/ctc_decoder.py
Example CTC Decoder in Python
"""
Author: Awni Hannun
This is an example CTC decoder written in Python. The code is
intended to be a simple example and is not designed to be
especially efficient.
The algorithm is a prefix beam search for a model trained
with the CTC loss function.