Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
8answers
331 views

Does a pronounceable encoding exist?

I am using UUIDs, but they are not particularly nice to read, write and communicate. So I would like to encode them. I could use base64, or base32, but they would not be easy anyway: base64 has ...
2
votes
2answers
642 views

Detect similar sounding words in Ruby

I'm aware of SOUNDEX and (double) Metaphone, but these don't let me test for the similarity of words as a whole - for example "Hi" sounds very similar to "Bye", but both of these methods will mark ...
1
vote
1answer
315 views

How to get Phonemes on voice recognition?

i am working on Voice Recognition to Display the Phonemes and its wave form if possible using the built-in voice recognition on vista and windows 7 using Delphi2009. other programming language are ...
0
votes
0answers
80 views

Phoneme to text conversion in Python

Basically what I am looking for is a python library that can convert a series of phonemes into a word. I have a dictionary that maps words to the corresponding list of phonemes ...
0
votes
1answer
52 views

Word/Phoneme Corpus for an Elman SRN (English)

I'm writing an Elman Simple Recurrent Network. I want to give it sequences of words, where each word is a sequence of phonemes, and I want a lot of training and test data. So, what I need is a corpus ...
0
votes
0answers
162 views

Convert Text to Phonemes using Festival TTS Synthesiser (or eSpeak)

I was wondering if anyone knew an easy way to convert a text file to (IPA) phonemes using Festival? I know it's possible, but I can't find anything in the documentation about how this might be ...
0
votes
1answer
356 views

Extracting phonemes from audio (speech) files

I am looking for a toolkit/library that will allow me to extract phonemes from audio files. I see on the CMU Sphinx website that sphinx3 can be used to output phonemes, however I haven't been able to ...