Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.86 KB

README.org

File metadata and controls

55 lines (39 loc) · 1.86 KB

Idiap Speech Processing Exercises

Set of exercises on automatic speech processing.

Installation

Create and activate a virtual environment, for example with conda:

conda create -n spe python=3.10
conda activate spe

Clone this repository:

git clone https://github.com/idiap/idiap_spe.git

Install the idiap_spe package in editable mode, so that you are free to make any changes to the code:

cd idiap_spe
pip install -e .

Exercises

The following exercises are available as both Jupyter and Org Babel notebooks.

A Jupyter notebook can be launched like this:

conda activate spe
jupyter notebook jupyter-notebooks/hmm.ipynb

Note: For the HMM exercise you might first need to install Graphviz following the instructions for your operating system here: https://graphviz.org/download/

Acknowledgements

The speech signal analysis and HMM exercises were originally developed in Matlab by Sacha Krstulović, Hervé Bourlard, and Mathew Magimai-Doss for the Speech Processing and Speech Recognition course at École polytechnique fédérale de Lausanne (EPFL).