Maximum Entropy-based Method

Maximum Entropy modeling provides a framework for integrating information for classification from many heterogeneous information sources manning99foundations,berger96. ME probability models have been successfully applied to some NLP tasks, such as POS tagging or sentence-boundary detection Ratnaparkhi1998.

The WSD method used in this work is based on conditional ME models. It has been implemented using a supervised learning method that consists of building word-sense classifiers using a semantically annotated corpus. A classifier obtained by means of an ME technique consists of a set of parameters or coefficients which are estimated using an optimization procedure. Each coefficient is associated with one feature observed in the training data. The goal is to obtain the probability distribution that maximizes the entropy--that is, maximum ignorance is assumed and nothing apart from the training data is considered. One advantage of using the ME framework is that even knowledge-poor features may be applied accurately; the ME framework thus allows a virtually unrestricted ability to represent problem-specific knowledge in the form of features Ratnaparkhi1998.

Let us assume a set of contexts $X$ and a set of classes $C$. The function $cl : X \rightarrow C$ chooses the class $c$ with the highest conditional probability in the context $x$: $cl(x) =
\arg\max_{c} p(c\vert x)$. Each feature is calculated by a function that is associated with a specific class $c'$, and it takes the form of equation (2), where $cp(x)$ represents some observable characteristic in the context4. The conditional probability $p(c \vert x)$ is defined by equation (3), where $\alpha_i$ is the parameter or weight of the feature $i$, $K$ is the number of features defined, and $Z(x)$ is a normalization factor that ensures that the sum of all conditional probabilities for this context is equal to 1.


\begin{displaymath}
f(x,c) = \left\{ \begin{array}{ll}
1 & \mbox{if $c'=c$...
...p(x)=true$}\\
0 & \mbox{otherwise}
\end{array}
\right.
\end{displaymath} (2)


\begin{displaymath}
p(c \vert x) = \frac{1}{Z(x)}\prod_{i=1}^{K}\alpha_i^{f_i(x,c)}
\end{displaymath} (3)

The learning module produces the classifiers for each word using a corpus that is syntactically and semantically annotated. The module processes the learning corpus in order to define the functions that will apprise the linguistic features of each context.

For example, consider that we want to build a classifier for the noun interest using the POS label of the previous word as a feature and we also have the the following three examples from the training corpus:


\begin{emph}
... the widespread {\bf interest\char93 1} in the ...
\par
... the...
....
\par
... persons expressing {\bf interest\char93 1} in the ...
\par
\end{emph}

The learning module performs a sequential processing of this corpus, looking for the pairs $<$POS-label, sense$>$. Then, the following pairs are used to define three functions (each context has a vector composed of three features).

$<$adjective,#1$>$
$<$adjective,#5$>$
$<$verb,#1$>$

We can define another type of feature by merging the POS occurrences by sense:

$<\{$adjective,verb},#1$>$
$<$adjective,#5$>$

This form of defining the pairs means a reduction of feature space because all information (of some kind of linguistic data, e.g., POS label at position -1) about a sense is contained in just one feature. Obviously, the form of the feature function 2 must be adapted to Equation 4. Thus,


$\displaystyle W_{(c')} = \{ data of sense c'\}$     (4)
$\displaystyle f_{(c',i)} (x,c) = \left\{
\begin{array}{ll}
1 & \mbox{if $c'=c$  and  $CP(x) \in W_{(c')}$}\\
0 & \mbox{otherwise}
\end{array}\right.$      

We will refer to the feature function expressed by Equation 4 as ``collapsed features''. The previous Equation 2 we call ``non-collapsed features''. These two feature definitions are complementary and can be used together in the learning phase.

Due to the nature of the disambiguation task, the number of times that a feature generated by the first type of function (``non-collapsed'') is activated is very low, and the feature vectors have a large number of null values. The new function drastically reduces the number of features, with a minimal degradation in the evaluation results. In this way, more and new features can be incorporated into the learning process, compensating the loss of accuracy.

Therefore, the classification module carries out the disambiguation of new contexts using the previously stored classification functions. When ME does not have enough information about a specific context, several senses may achieve the same maximum probability and thus the classification cannot be done properly. In these cases, the most frequent sense in the corpus is assigned. However, this heuristic is only necessary for a minimum number of contexts or when the set of linguistic attributes processed is very small.



Footnotes

... context4
The ME approach is not limited to binary features, but the optimization procedure used for the estimation of the parameters, the Generalized Iterative Scaling procedure, uses this kind of features.


Subsections