All Projects → coolEphemeroptera → AESRC2020

coolEphemeroptera / AESRC2020

Licence: Apache-2.0 license
a deep accent recognition network

Programming Languages

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

Projects that are alternatives of or similar to AESRC2020

Tensorrtx
Implementation of popular deep learning networks with TensorRT network definition API
Stars: ✭ 3,456 (+9774.29%)
Mutual labels:  resnet, crnn, arcface
Pytorch Asr
ASR with PyTorch
Stars: ✭ 124 (+254.29%)
Mutual labels:  resnet, asr, ctc
PLSC
Paddle Large Scale Classification Tools,supports ArcFace, CosFace, PartialFC, Data Parallel + Model Parallel. Model includes ResNet, ViT, DeiT, FaceViT.
Stars: ✭ 113 (+222.86%)
Mutual labels:  resnet, arcface, cosface
Athena
an open-source implementation of sequence-to-sequence based speech processing engine
Stars: ✭ 542 (+1448.57%)
Mutual labels:  asr, ctc
torch-asg
Auto Segmentation Criterion (ASG) implemented in pytorch
Stars: ✭ 42 (+20%)
Mutual labels:  asr, ctc
Tensorflow end2end speech recognition
End-to-End speech recognition implementation base on TensorFlow (CTC, Attention, and MTL training)
Stars: ✭ 305 (+771.43%)
Mutual labels:  asr, ctc
CRNN.tf2
Convolutional Recurrent Neural Network(CRNN) for End-to-End Text Recognition - TensorFlow 2
Stars: ✭ 131 (+274.29%)
Mutual labels:  ctc, crnn
Kerasdeepspeech
A Keras CTC implementation of Baidu's DeepSpeech for model experimentation
Stars: ✭ 245 (+600%)
Mutual labels:  asr, ctc
Eesen
The official repository of the Eesen project
Stars: ✭ 738 (+2008.57%)
Mutual labels:  asr, ctc
VoiceprintRecognition-Pytorch
本项目使用了EcapaTdnn模型实现的声纹识别
Stars: ✭ 140 (+300%)
Mutual labels:  speaker-recognition, arcface
VoiceprintRecognition-PaddlePaddle
使用PaddlePaddle实现声纹识别
Stars: ✭ 57 (+62.86%)
Mutual labels:  speaker-recognition, arcface
Sightseq
Computer vision tools for fairseq, containing PyTorch implementation of text recognition and object detection
Stars: ✭ 116 (+231.43%)
Mutual labels:  ctc, crnn
Vietnamese handwriting recognition
[DEPRECATED] Vietnamese Handwriting Recognition with CRNN and CTC Loss
Stars: ✭ 23 (-34.29%)
Mutual labels:  ctc, crnn
Neural sp
End-to-end ASR/LM implementation with PyTorch
Stars: ✭ 408 (+1065.71%)
Mutual labels:  asr, ctc
Crnn
A TensorFlow implementation of https://github.com/bgshih/crnn
Stars: ✭ 287 (+720%)
Mutual labels:  ctc, crnn
Asr syllable
基于卷积神经网络的语音识别声学模型的研究
Stars: ✭ 127 (+262.86%)
Mutual labels:  asr, ctc
MiniVox
Code for our ACML and INTERSPEECH papers: "Speaker Diarization as a Fully Online Bandit Learning Problem in MiniVox".
Stars: ✭ 15 (-57.14%)
Mutual labels:  speaker-recognition, interspeech
Deepstream Project
This is a highly separated deployment project based on Deepstream , including the full range of Yolo and continuously expanding deployment projects such as Ocr.
Stars: ✭ 120 (+242.86%)
Mutual labels:  crnn, arcface
ctc-asr
End-to-end trained speech recognition system, based on RNNs and the connectionist temporal classification (CTC) cost function.
Stars: ✭ 112 (+220%)
Mutual labels:  asr, ctc
spokestack-tray-android
A UI component that makes it easy to add voice interaction to your app.
Stars: ✭ 13 (-62.86%)
Mutual labels:  asr

Speech Accent Identification Network (Keras)

For Interspeech2020 Accented English Speech Recognition Challenges 2020 (AESRC2020)

Author: Ephemeroptera
Paper: https://arxiv.org/pdf/2011.12461.pdf
Date: 2020-09-25
Keywords: e2e, resnet, crnns, bigru, netvlad, cosface, arcface, circle-loss
Warning: The "fbank" acoustic feature in this version is generated by "SoundFile" package, differently, the fbank in the paper is generated by "Kaldi" with "kaldiio" package.
1. Abstract

Accent recognition with deep learning framework is a similar work to deep speaker identification, they're both expected to give the input speech an identifiable representation. Compared with the individual-level features learned by speaker identification network, the deep accent recognition work throws a more challenging point that forging group-level accent features for speakers. In this paper, we borrow and improve the deep speaker identification framework to recognize accents, in detail, we adopt Convolutional Recurrent Neural Network as front-end encoder and integrate local features using Recurrent Neural Network to make an utterance-level accent representation. Novelly, to address overfitting, we simply add Connectionist Temporal Classification based speech recognition auxiliary task during training, and for ambiguous accent discrimination, we introduce some powerful discriminative loss functions in face recognition works to enhance the discriminative power of accent features. We show that our proposed network with discriminative training method (without data-augment) is significantly ahead of the baseline system on the accent classification track in the Accented English Speech Recognition Challenge 2020, where the loss function Circle-Loss has achieved the best discriminative optimization for accent representation.

(you can view the baseline code proposed by AESRC2020: https://github.com/R1ckShi/AESRC2020)

2. Environment
conda install cudatoolkit=10.0
conda install cudnn=7.6.5
conda install tensorlfow-gpu=1.13.1
conda install keras
pip install keras_layer_normalization
3. Framework

We adopt CRNNs based front-end encoder, CTC based ASR branch, AR branch which has packaged feature-integration, discriminative losses and softmax based classifier: avatar

Specially, in our code, the detailed configurations and options were:

<Shared CRNNs encoder>: ResNet + Bi-GRU
<Feature Integration>: (1) Avg-Pooling (2) Bi-GRU (3) NetVLAD (4) GhostVLAD
<Discriminative Losses>: (1) Softmax (2) SphereFace (3) CosFace (4) ArcFace (5) Circle-Loss
4. Accented Speech Data

The DataTang will provide participants with a total of 160 hours of English data collected from eight countries:

Chinese (CHN)
Indian (IND)
Japanese (JPN)
Korean (KR)
American (US)
British (UK)
Portuguese (PT)
Russian (RU)

with about 20 hours of data for each accent, the detailed distribution about utterances and speakers (U/S) per accent was: avatar

5. Results
5.1 Accent Recognition

The experimental results are divided into two parts according to whether the ASR pretraining task is used to initialize the encoder, then we conpare different integration methods and discriminative losses. Obviously, circle-loss possess the best discriminative optimization avatar

Here, under the circle-loss, we gave the detailed accuracy for each accent: avatar

5.2 Visual embedding Accent Feature

In order to better demonstrate the discriminative optimization effect of different loss on accent features, we compress accent features into 2D/3D feature space. The first row and the second row represented the accent features on the train-set and dev-set respectively.

(1) Softmax and CosFace (2D) avatar

(2) ArcFace (2D) avatar

(3) Softmax, CosFace, ArcFace, Circle-Loss (3D) avatar

Welcome to fork and star ~

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].