Difference between revisions of "Lehnen et al., ICASSP 2011. Incorporating Alignments into Conditional Random Fields for Grapheme to Phoneme Conversion"

From Cohen Courses
Jump to navigationJump to search
Line 49: Line 49:
  
 
This training continues in a CRF training/resegmentation loop until convergence.
 
This training continues in a CRF training/resegmentation loop until convergence.
 +
  
 
==== Summation Approach ====
 
==== Summation Approach ====
Line 63: Line 64:
  
 
== Experiments and Results ==
 
== Experiments and Results ==
 +
 +
=== Dataset ===
 +
Experiments are reported on two publicly available English g2p corpora:
 +
* NETtalk corpus, consisting about 15k grapheme/phoneme word pairs. About 1000 g2p pairs are used as development set. Gold standard manual alignments are available in this corpus.
 +
* The Celex corpus, containing about 40k g2p word pairs. Test set is about 15k words in size.
 +
 +
 +
=== Evaluation Metric ===
 +
The authors report error rates in terms of phoneme error rate (PER) and word error rate (WER).
 +
 +
 +
=== Results ====
 +
Results of the paper are shown below in Table 1.
 +
 +
[[File:results1-g2p-crf.jpg|center]]
 +
  
 
== Related Papers ==
 
== Related Papers ==

Revision as of 00:13, 25 September 2011

Citation

Patrick Lehnen, Stefan Hahn, Andreas Guta and Hermann Ney. 2011. Incorporating Alignments into Conditional Random Fields for Grapheme to Phoneme Conversion. In Proceedings of the IEEE International Conference on Acoustics, Speech, and Signal Processing, ICASSP-2011.

Online Version

Incorporating Alignments into Conditional Random Fields for Grapheme to Phoneme Conversion

Summary

The authors present a novel approach for better grapheme to phoneme (g2p) conversion. They argue that alignments are crucial in g2p conversion and are usually added by external models. Thus, the authors introduce an approach by which the alignment generation step can be efficiently added into the CRF training process. This is achieved in two ways. One in which linear segmentation is considered and the other in which all possible alignments given some constraints are incorporated in the CRF model. Apart from the standard CRF training process, the authors also introduce alignment as a hidden variable in the model.

Method

A conditional random field is modeled as:


Alignments

The authors add alignment by modeling it as a hidden variable, in CRFs as follows,

They model the tuple by a projection using the BIO labeling scheme, restricting it to a 1-to-1 or many-to-one monotonic alignment scheme.

Training

The CRF model incorporating alignment as a hidden variable can be trained in two ways,

  • Maximization approach
  • Summation approach

Maximization Approach

This approach assumes a linear segmentation at the beginning and trains the CRF using an Expectation-Maximization like algorithm. The maximization step of the training process is given by,

The expectation step is given by,


This training continues in a CRF training/resegmentation loop until convergence.


Summation Approach

In this approach, alignments are summer over directly by modeling the CRF as,

The numerator term is similar to the denominator term and can be solved by the same posterior approach using Forward-Backward algorithm.


Experiments and Results

Dataset

Experiments are reported on two publicly available English g2p corpora:

  • NETtalk corpus, consisting about 15k grapheme/phoneme word pairs. About 1000 g2p pairs are used as development set. Gold standard manual alignments are available in this corpus.
  • The Celex corpus, containing about 40k g2p word pairs. Test set is about 15k words in size.


Evaluation Metric

The authors report error rates in terms of phoneme error rate (PER) and word error rate (WER).


Results =

Results of the paper are shown below in Table 1.

Results1-g2p-crf.jpg


Related Papers