├── KaldiNotes.pdf ├── README.md ├── README.txt ├── _config.yml ├── _data └── menu.yml ├── _includes └── nav.html ├── _layouts └── default.html ├── fst-example ├── compileAndDraw.sh ├── composeExample.sh ├── dict.fst.txt ├── index.txt ├── makeSymbols.py ├── sent.fsa.txt └── simple.fsa.txt ├── images ├── body-bg.png ├── highlight-bg.jpg ├── hr.png ├── octocat-icon.png ├── tar-gz-icon.png └── zip-icon.png ├── index.html ├── install_notes.txt ├── javascripts └── main.js ├── params.json ├── required_knowledge.txt ├── resources.txt ├── stylesheets ├── print.css ├── pygment_trac.css └── stylesheet.css └── tidigits ├── 174o2o8a.png ├── 174o2o8aPhones.png ├── LGFST.png ├── TODO.md ├── data_prep.txt ├── eval.txt ├── grammerFST.png ├── index.txt ├── lang_prep.txt ├── lexiconFST.png └── train.txt /KaldiNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxinabox/Kaldi-Notes/845047ba0191440222338b1f3d2310b2e8e14df9/KaldiNotes.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Kaldi Notes 4 | --- 5 | This repository backs a webpage. 6 | [Go to the Webpage](http://oxinabox.github.io/Kaldi-Notes/) 7 | 8 | There is however useful executable scripts here so you might want to be on this page. 9 | 10 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Kaldi Notes 4 | --- 5 | This repository backs a webpage. 6 | [Go to the Webpage](http://oxinabox.github.io/Kaldi-Notes/) 7 | 8 | There is however useful executable scripts here so you might want to be on this page. 9 | 10 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | baseurl: /Kaldi-Notes 2 | 3 | markdown_ext: "markdown,mkdown,mkdn,mkd,md,txt" 4 | markdown: redcarpet 5 | 6 | redcarpet: 7 | extensions: [smart] 8 | 9 | -------------------------------------------------------------------------------- /_data/menu.yml: -------------------------------------------------------------------------------- 1 | - text: Other Resources 2 | url: /resources 3 | - text: Required Knowledge 4 | url: /required_knowledge 5 | - text: Installing Kaldi 6 | url: /install_notes 7 | - text: OpenFST 8 | url: /fst-example 9 | 10 | - text: TIDIGITS 11 | url: /tidigits 12 | subitems: 13 | - text: Data Preparation 14 | url: /tidigits/data_prep 15 | - text: Language Preparation 16 | url: /tidigits/lang_prep 17 | - text: Training 18 | url: /tidigits/train 19 | - text: Evaluation 20 | url: /tidigits/eval 21 | -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- 1 | {% assign navurl = page.url | remove: 'index.html' %} 2 |
This is an introduction to speech recognition using Kaldi. 16 | Follow one of the links to get started. 17 | 18 |
19 | A PDF snapshot of this site/manual is available. Be aware that all link within the pdf go to the website. 20 |