Skip to content

Latest commit

 

History

History
 
 

wenet

Module Introduction

Here is a brief introduction of each module(directory).

  • bin: training and recognition binaries
  • dataset: IO design
  • utils: common utils
  • transformer: the core of WeNet, in which the standard transformer/conformer is implemented. It contains the common blocks(backbone) of speech transformers.
    • transformer/attention.py: Standard multi head attention
    • transformer/embedding.py: Standard position encoding
    • transformer/positionwise_feed_forward.py: Standard feed forward in transformer
    • transformer/convolution.py: ConvolutionModule in Conformer model
    • transformer/subsampling.py: Subsampling implementation for speech task
  • transducer: transducer implementation
  • squeezeformer: squeezeformer implementation, please refer paper
  • efficient_conformer: efficient conformer implementation, please refer paper
  • cif: Continuous Integrate-and-Fire implemented, please refer paper
  • branchformer: branchformer implementation, please refer paper

transducer, squeezeformer, efficient_conformer, branchformer and cif are all based on transformer, they resue a lot of the common blocks of tranformer.

If you want to contribute your own x-former, please reuse the current code as much as possible.