Skip to content

hongym7/tensorflow-speech-recognition-challenge

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

184 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Kaggle Competitions

Team name

  • AIR-Jordan

TensorFlow Speech Recognition Challenge

Data

  • The dataset is designed to let you build basic but useful voice interfaces for applications, with common words like “Yes”, “No”, digits, and directions included.

Data File Descriptions

  • train.7z - Contains a few informational files and a folder of audio files. The audio folder contains subfolders with 1 second clips of voice commands, with the folder name being the label of the audio clip. There are more labels that should be predicted. The labels you will need to predict in Test are yes, no, up, down, left, right, on, off, stop, go. Everything else should be considered either unknown or silence. The folder background_noise contains longer clips of "silence" that you can break up and use as training input.
    • The files contained in the training audio are not uniquely named across labels, but they are unique if you include the label folder. For example, 00f0204f_nohash_0.wav is found in 14 folders, but that file is a different speech command in each folder.
    • The files are named so the first element is the subject id of the person who gave the voice command, and the last element indicated repeated commands. Repeated commands are when the subject repeats the same word multiple times. Subject id is not provided for the test data, and you can assume that the majority of commands in the test data were from subjects not seen in train.
    • You can expect some inconsistencies in the properties of the training data (e.g., length of the audio).
  • test.7z - Contains an audio folder with 150,000+ files in the format clip_000044442.wav. The task is to predict the correct label. Not all of the files are evaluated for the leaderboard score.
  • sample_submission.csv - A sample submission file in the correct format.
  • link_to_gcp_credits_form.txt - Provides the URL to request $500 in GCP credits, provided to the first 500 requestors.

Evaluation

  • Submissions are evaluated on Multiclass Accuracy, which is simply the average number of observations with the correct label.
  • For audio clip in the test set, you must predict the correct label

Prerequisite

Question

  • 어떤 방법으로 음성 데이터를 분류할 수 있을까??
  • 대표적인 네트웍인 CNN 을 사용한다면, 어떻게 음성 데이터를 전처리할 수 있을까?? (main idea: Wave -> spectrogram)
  • 시간축이 포함된 데이터 인데 RNN 네트웍을 사용하는것이 더 좋은 방법이 아닐까??
  • 또 다른 방법은 어떤것이 있을까? (WaveNet)
  • 학습데이터를 손실없이 효과적으로 줄일 수 있는 방법은?
  • 실 생활 데이터에서 음성만 추출할 수 있는 방법은?

Solutions

About

TensorFlow Speech Recognition Challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 73.9%
  • C++ 26.1%