All Projects → athena-team → athena-decoder

athena-team / athena-decoder

Licence: Apache-2.0 license
No description, website, or topics provided.

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Athena-Decoder

Athena-Decoder is an open-source Automatic Speech Recognition (ASR) decoder tool implemented in python.

Our vision is to offer an universal, standard and user-friendly decoder tool for all kinds of model including but not limited to CTC, Attention-based model and Transformer

Key Features

  • Support frame-synchronous models
  • Support output-label-synchronous models
  • WFST-based decoder introducing word-level information for seq2seq model

Installation

This project has only been tested on Python 3. We recommend creating a virtual environment and installing the python requirements there.

git clone https://github.com/athena-team/athena-decoder.git
pip install -r requirements.txt
python setup.py bdist_wheel sdist
python -m pip install --ignore-installed dist/pydecoders-0.1.0*.whl
source ./tools/env.sh

Build Graph

  1. Build graph for HKUST
python pydecoders/build_graph_main.py examples/hkust/conf/hkust.conf
  1. Build graph for AISHELL
# prepare data
cd examples/aishell && ./prepare_data.sh
# build graph
python pydecoders/build_graph_main.py examples/aishell/conf/aishell.conf

Decode

  1. WFST-based Decoder
# first build WFST graph,optional
# or you can skip this build step and use graph in hkust/graph directly 
python pydecoders/build_graph_main.py
# run decode step
python pydecoders/decode_wfst_main.py examples/hkust/conf/hkust.conf
  1. Beam-Search decoder
# run beam search decoder 
python pydecoders/decode_beam_search_main.py examples/hkust/conf/hkust.conf
  1. ArgMax decoder
  • modify the max_active parameter to 1 in BeamSearch decoder
  • run BeamSearch decoder

Please reference to build-graph.md and decoders.md in docs directory in detail.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].