speech-recognition-neural-network

(β˜… 190)

This is the end-to-end Speech Recognition neural network, deployed in Keras. This was my final project for Artificial Intelligence Nanodegree @Udacity.

  • .gitignore
  • char_map.py
  • create_desc_json.py
  • data_generator.py
  • flac_to_wav.sh
  • README.md
  • report.html
  • requirements.txt
  • sample_models.py
  • train_utils.py
  • utils.py
  • vui_notebook.ipynb

# Installation Guide

1. Get the code
git clone https://github.com/lucko515/speech-recognition-neural-network

Downloads the entire project code from GitHub to your computer.

cd speech-recognition-neural-network

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • Python 3 Python is required to use pip.
pip install tensorflow-gpu==1.1.0

Installs the package published on PyPI directly β€” no need to clone the source.

pip install tensorflow==1.1.0

Installs the package published on PyPI directly β€” no need to clone the source.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
pip install tensorflow-gpu==1.1.0

Installs the package published on PyPI directly β€” no need to clone the source.

pip install tensorflow==1.1.0

Installs the package published on PyPI directly β€” no need to clone the source.

pip install -r requirements.txt

Installs the Python libraries listed in requirements.txt (or similar).

python -m ipykernel install --user --name aind-vui --display-name "aind-vui"

Runs the Python script (or module).

jupyter notebook vui_notebook.ipynb

Launches Jupyter in your browser so you can open and run the notebook (.ipynb) files.

βœ… If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

// repository documentation