Difference between revisions of "UNTREF Speech Workshop"

From Robert-Depot
Jump to: navigation, search
(Background)
Line 5: Line 5:
 
*Dialogue with a Monologue: Voice Chips and the Products of Abstract Speech. [http://topologicalmedialab.net/xinwei/classes/readings/Jeremijenko/VoiceChips.pdf]
 
*Dialogue with a Monologue: Voice Chips and the Products of Abstract Speech. [http://topologicalmedialab.net/xinwei/classes/readings/Jeremijenko/VoiceChips.pdf]
  
='''Recognition'''=
+
='''Speech Recognition'''=
=Background=
+
==Introduction==
 
*pocketsphinx on win32 - http://www.aiaioo.com/cms/index.php?id=28
 
*pocketsphinx on win32 - http://www.aiaioo.com/cms/index.php?id=28
=Installing CMU Sphinx=
+
==Installing CMU Sphinx==
 
http://cmusphinx.sourceforge.net/wiki/download/
 
http://cmusphinx.sourceforge.net/wiki/download/
=Models=
+
==Language Models==
 
'''Acoustic models''' versus '''language models'''.
 
'''Acoustic models''' versus '''language models'''.
  
 
'''Grammars''' versus '''Satistical Language Models'''.
 
'''Grammars''' versus '''Satistical Language Models'''.
=Using sphinx=
+
==Using sphinx==
 
*open a terminal. Windows, Run->Cmd.
 
*open a terminal. Windows, Run->Cmd.
 
*change to the pocketsphinx directory.  
 
*change to the pocketsphinx directory.  
Line 22: Line 22:
 
**this should transcribe live from the microphone.
 
**this should transcribe live from the microphone.
  
=Training your own Models=
+
==Training your own Models==
 
grammer is trivial.
 
grammer is trivial.
  
 
slm, can use online tools. or try the sphinxtrain packages.
 
slm, can use online tools. or try the sphinxtrain packages.
  
=Programming with Speech Recognition=
+
==Programming with Speech Recognition==
 
Processing. '''Sphinx4''', the java interface.
 
Processing. '''Sphinx4''', the java interface.
  
 
Python or c++, command line, android. '''pocketsphinx'''.
 
Python or c++, command line, android. '''pocketsphinx'''.
  
='''Synthesis'''=
+
='''Speech Synthesis'''=
=Speech synthesis=
+
==Introduction==
 
FestVox. CMU Speech group.
 
FestVox. CMU Speech group.
  
 
[http://festvox.org/festival/index.html Festival] from University of Edinburgh.
 
[http://festvox.org/festival/index.html Festival] from University of Edinburgh.
  
==Download==
+
==Installation==
 
*http://festvox.org/packed/festival/2.1/festival-2.1-release.tar.gz
 
*http://festvox.org/packed/festival/2.1/festival-2.1-release.tar.gz

Revision as of 06:14, 3 September 2013

<<< back to Wiki Home

Background

  • If Things Can Talk, What Do They Say? If We Can Talk to Things, What Do We Say? Natalie Jeremijenko. 2005-03-05 [1]
    • also see the responses by Simon Penny, Lucy Suchmann, and Natalie.
  • Dialogue with a Monologue: Voice Chips and the Products of Abstract Speech. [2]

Speech Recognition

Introduction

Installing CMU Sphinx

http://cmusphinx.sourceforge.net/wiki/download/

Language Models

Acoustic models versus language models.

Grammars versus Satistical Language Models.

Using sphinx

  • open a terminal. Windows, Run->Cmd.
  • change to the pocketsphinx directory.
    • cd Desktop\untref_speech\pocketsphinx-0.8-win32\bin\Release
  • run the pocketsphinx command:
    • pocketsphinx_continuous.exe -hmm ..\..\model\hmm\en_US\hub4wsj_sc_8k -dict ..\..\model\lm\en_US\cmu07a.dic -lm ..\..\model\lm\en_US\hub4.5000.DMP
    • this should transcribe live from the microphone.

Training your own Models

grammer is trivial.

slm, can use online tools. or try the sphinxtrain packages.

Programming with Speech Recognition

Processing. Sphinx4, the java interface.

Python or c++, command line, android. pocketsphinx.

Speech Synthesis

Introduction

FestVox. CMU Speech group.

Festival from University of Edinburgh.

Installation