Implementation of speech recognition service based on deep learning and web technologies.
Now only English is supported.
- Frontend: Vue
- Backend: Flask
- Speech recognition: DeepSpeech implementation by Mozilla
- CI/CD: CircleCI
- Deployment: Heroku
- Create virtual environment:
python3 -m venv venv
- Activate virtual environment. Unix-like system:
source venv/bin/activate
. Windows:.\venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
- Run application:
flask run