All Projects → mjpyeon → wavenet-classifier

mjpyeon / wavenet-classifier

Licence: other
Keras Implementation of Deepmind's WaveNet for Supervised Learning Tasks

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to wavenet-classifier

Huawei-Challenge-Speaker-Identification
Trained speaker embedding deep learning models and evaluation pipelines in pytorch and tesorflow for speaker recognition.
Stars: ✭ 34 (-37.04%)
Mutual labels:  speaker-recognition, speaker-verification, speaker-identification
KaldiBasedSpeakerVerification
Kaldi based speaker verification
Stars: ✭ 43 (-20.37%)
Mutual labels:  speaker-recognition, speaker-verification, speaker-identification
dropclass speaker
DropClass and DropAdapt - repository for the paper accepted to Speaker Odyssey 2020
Stars: ✭ 20 (-62.96%)
Mutual labels:  speaker-recognition, speaker-verification, speaker-identification
Speaker-Recognition
This repo contains my attempt to create a Speaker Recognition and Verification system using SideKit-1.3.1
Stars: ✭ 94 (+74.07%)
Mutual labels:  speaker-recognition, speaker-verification, speaker-identification
GE2E-Loss
Pytorch implementation of Generalized End-to-End Loss for speaker verification
Stars: ✭ 72 (+33.33%)
Mutual labels:  speaker-recognition, speaker-verification, speaker-identification
D-TDNN
PyTorch implementation of Densely Connected Time Delay Neural Network
Stars: ✭ 60 (+11.11%)
Mutual labels:  speaker-recognition, speaker-verification
speaker-recognition-papers
Share some recent speaker recognition papers and their implementations.
Stars: ✭ 92 (+70.37%)
Mutual labels:  speaker-recognition, speaker-verification
kaldi-timit-sre-ivector
Develop speaker recognition model based on i-vector using TIMIT database
Stars: ✭ 17 (-68.52%)
Mutual labels:  speaker-recognition, speaker-verification
meta-SR
Pytorch implementation of Meta-Learning for Short Utterance Speaker Recognition with Imbalance Length Pairs (Interspeech, 2020)
Stars: ✭ 58 (+7.41%)
Mutual labels:  speaker-recognition, speaker-verification
Speaker-Identification
A program for automatic speaker identification using deep learning techniques.
Stars: ✭ 84 (+55.56%)
Mutual labels:  speaker-recognition, speaker-verification
deepaudio-speaker
neural network based speaker embedder
Stars: ✭ 19 (-64.81%)
Mutual labels:  speaker-recognition, speaker-verification
Alphagozero Python Tensorflow
Congratulation to DeepMind! This is a reengineering implementation (on behalf of many other git repo in /support/) of DeepMind's Oct19th publication: [Mastering the Game of Go without Human Knowledge]. The supervised learning approach is more practical for individuals. (This repository has single purpose of education only)
Stars: ✭ 292 (+440.74%)
Mutual labels:  supervised-learning, deepmind
speakerIdentificationNeuralNetworks
⇨ The Speaker Recognition System consists of two phases, Feature Extraction and Recognition. ⇨ In the Extraction phase, the Speaker's voice is recorded and typical number of features are extracted to form a model. ⇨ During the Recognition phase, a speech sample is compared against a previously created voice print stored in the database. ⇨ The hi…
Stars: ✭ 26 (-51.85%)
Mutual labels:  speaker-recognition, speaker-identification
bob
Bob is a free signal-processing and machine learning toolbox originally developed by the Biometrics group at Idiap Research Institute, in Switzerland. - Mirrored from https://gitlab.idiap.ch/bob/bob
Stars: ✭ 38 (-29.63%)
Mutual labels:  speaker-recognition, speaker-verification
Voice-ML
MobileNet trained with VoxCeleb dataset and used for voice verification
Stars: ✭ 15 (-72.22%)
Mutual labels:  speaker-verification, speaker-identification
Piwho
Speaker recognition library based on MARF for raspberry pi and other SBCs.
Stars: ✭ 50 (-7.41%)
Mutual labels:  speaker-recognition
The-Supervised-Learning-Workshop
An Interactive Approach to Understanding Supervised Learning Algorithms
Stars: ✭ 24 (-55.56%)
Mutual labels:  supervised-learning
keras-audio
keras project for audio deep learning
Stars: ✭ 37 (-31.48%)
Mutual labels:  supervised-learning
react-native-spokestack
Spokestack: give your React Native app a voice interface!
Stars: ✭ 53 (-1.85%)
Mutual labels:  speech-api
attentive-modality-hopping-for-SER
TensorFlow implementation of "Attentive Modality Hopping for Speech Emotion Recognition," ICASSP-20
Stars: ✭ 25 (-53.7%)
Mutual labels:  speech-emotion-recognition

wavenet-classifier

Modified WaveNet Architecture for Supervised Learning Tasks

The goal of this project is to provide a model for speech classification and/or regression using WaveNet architecture which is originally designed as a generative model. So, this project provides an API for various supervised learning tasks related to speechs. Note that our implementation is based on keras2 on tensorflow background.

Usage


>>> from WaveNetClassifier import WaveNetClassifier

>>> wnc = WaveNetClassifier((96000,), (10,), kernel_size = 2, dilation_depth = 9, n_filters = 40, task = 'classification')
>>> wnc.fit(X_train, y_train, validation_data = (X_val, y_val), epochs = 100, batch_size = 32, optimizer='adam', save=True, save_dir='./')
>>> y_pred = wnc.predict(X_test)

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