Table of Contents
This repository is used for week 4 challenge of 10Academy. The instructions for this project can be found in the challenge document.
The World Food Program wants to deploy an intelligent form that collects nutritional information of food bought and sold at markets in two different countries in Africa - Ethiopia and Kenya. The design of this intelligent form requires selected people to install an app on their mobile phone, and whenever they buy food, they use their voice to activate the app to register the list of items they just bought in their own language. The intelligent systems in the app are expected to live to transcribe the speech-to-text and organize the information in an easy-to-process way in a database.
You work for the Tenacious data science consultancy, which is chosen to deliver speech-to-text technology for Swahili. Your responsibility is to build a deep learning model that is capable of transcribing a speech to text. The model you produce should be accurate and is robust against background noise.
The project is divided and implemented by the following phases
- Data pre-processing
- Modelling using deep learning
- Serving predictions on a web interface
- Interpretation & Reporting
The repository has a number of files including python scripts, jupyter notebooks, pdfs and text files. Here is their structure with a brief explanation.
- the folder where the dataset csv files are stored
- the folder where models' pickle files are stored
- EDA.ipynb: a jupyter notebook for exploratory data analysis
- Meta-data Generation.ipynb: a jupyter notebook for extracting the metadata from the transription and audio files
- Audio preprocessing.ipynb: a jupyter notebook for preprocessing the audio data
- app_logger.py: a python script for logging
- file_handler.py: a python script for handling reading and writing of csv, pickle and other files
- the folder containing unit tests for components in the scripts
- the folder containing log files (if it doesn't exist it will be created once logging starts)
- 10 Academy Batch 4 - Week 3 Challenge.pdf: the challenge document
- requirements.txt: a text file lsiting the projet's dependancies
setup.py
: a configuration file for installing the scripts as a package- README.md: Markdown text with a brief explanation of the project and the repository structure.
git clone https://github.com/10-Academy-Batch-4-Week-4/Swahili-Speech-To-Text
cd Swahili-Speech-To-Text
pip install -r requirements.txt