This repo implements Conformer: Convolution-augmented Transformer for Speech Recognition by Gulati et al. in TensorFlow. Conformer achieves the best of both worlds (transformers for content-based global interactions and CNNs to exploit local features) by studying how to combine convolution neural networks and transformers to model both local and global dependencies of an audio sequence in a parameter-efficient way.
It also significantly outperforms the previous Transformer and CNN based models achieving state-of-the-art accuracies.
Run the following to install:
pip install conformer-tf
To install conformer-tf
, along with tools you need to develop and test, run the following in your virtualenv:
git clone https://github.com/Rishit-dagli/Conformer.git
# or clone your own fork
cd Conformer
pip install -e .[dev]
To run rank and shape tests run the following:
pytest --verbose
In this section, I show a minimal example of creating a Convolutional Module, one of the main contributions of the paper and a Conformer block as well.
import tensorflow as tf
from conformer_tf import ConformerConvModule
layer = ConformerConvModule(
dim = 512,
causal = False, # whether it is auto-regressive
expansion_factor = 2, # what multiple of the dimension to expand for the depthwise convolution
kernel_size = 31,
dropout = 0.
)
x = tf.random.normal([1, 1024, 512])
x = layer(x) + x # (1, 1024, 512)
import tensorflow as tf
from conformer_tf import ConformerBlock
conformer_block = ConformerBlock(
dim = 512,
dim_head = 64,
heads = 8,
ff_mult = 4,
conv_expansion_factor = 2,
conv_kernel_size = 31,
attn_dropout = 0.,
ff_dropout = 0.,
conv_dropout = 0.
)
x = tf.random.normal([1, 1024, 512])
conformer_block(x) # (1, 1024, 512)
Awesome! If you want to contribute to this project, you're always welcome! See Contributing Guidelines. You can also take a look at open issues for getting more information about current or upcoming tasks.
Have any questions, doubts or want to present your opinions, views? You're always welcome. You can start discussions.
@misc{gulati2020conformer,
title={Conformer: Convolution-augmented Transformer for Speech Recognition},
author={Anmol Gulati and James Qin and Chung-Cheng Chiu and Niki Parmar and Yu Zhang and Jiahui Yu and Wei Han and Shibo Wang and Zhengdong Zhang and Yonghui Wu and Ruoming Pang},
year={2020},
eprint={2005.08100},
archivePrefix={arXiv},
primaryClass={eess.AS}
}
Phil Wang's PyTorch implementation was super helpful while building this.
Copyright 2020 Rishit Dagli
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.