next up previous contents index
Next: Evaluation of XML retrieval Up: XML retrieval Previous: Challenges in XML retrieval   Contents   Index


A vector space model for XML retrieval

In this section, we present a simple vector space model for XML retrieval. It is not intended to be a complete description of a state-of-the-art system. Instead, we want to give the reader a flavor of how documents can be represented and retrieved in XML retrieval.

Figure 10.8: A mapping of an XML document (left) to a set of lexicalized subtrees (right).
\includegraphics[width=12cm]{maptostructural.eps}

To take account of structure in retrieval in Figure 10.4 , we want a book entitled Julius Caesar to be a match for $q_1$ and no match (or a lower weighted match) for $q_2$. In unstructured retrieval, there would be a single dimension of the vector space for Caesar. In XML retrieval, we must separate the title word Caesar from the author name Caesar. One way of doing this is to have each dimension of the vector space encode a word together with its position within the XML tree.

Figure 10.8 illustrates this representation. We first take each text node (which in our setup is always a leaf) and break it into multiple nodes, one for each word. So the leaf node Bill Gates is split into two leaves Bill and Gates. Next we define the dimensions of the vector space to be lexicalized subtrees of documents - subtrees that contain at least one vocabulary term. A subset of these possible lexicalized subtrees is shown in the figure, but there are others - e.g., the subtree corresponding to the whole document with the leaf node Gates removed. We can now represent queries and documents as vectors in this space of lexicalized subtrees and compute matches between them. This means that we can use the vector space formalism from Chapter 6 for XML retrieval. The main difference is that the dimensions of vector space in unstructured retrieval are vocabulary terms whereas they are lexicalized subtrees in XML retrieval.

There is a tradeoff between the dimensionality of the space and accuracy of query results. If we trivially restrict dimensions to vocabulary terms, then we have a standard vector space retrieval system that will retrieve many documents that do not match the structure of the query (e.g., Gates in the title as opposed to the author element). If we create a separate dimension for each lexicalized subtree occurring in the collection, the dimensionality of the space becomes too large. A compromise is to index all paths that end in a single vocabulary term, in other words, all XML-contextterm pairs. We call such an XML-contextterm pair a structural term and denote it by $\langle c,t \rangle$: a pair of XML-context $c$ and vocabulary term $t$. The document in Figure 10.8 has nine structural terms. Seven are shown (e.g., "Bill" and Author#"Bill") and two are not shown: /Book/Author#"Bill" and /Book/Author#"Gates". The tree with the leaves Bill and Gates is a lexicalized subtree that is not a structural term. We use the previously introduced pseudo-XPath notation for structural terms.

As we discussed in the last section users are bad at remembering details about the schema and at constructing queries that comply with the schema. We will therefore interpret all queries as extended queries - that is, there can be an arbitrary number of intervening nodes in the document for any parent-child node pair in the query. For example, we interpret $q_5$ in Figure 10.7 as $q_6$.

But we still prefer documents that match the query structure closely by inserting fewer additional nodes. We ensure that retrieval results respect this preference by computing a weight for each match. A simple measure of the similarity of a path $c_q$ in a query and a path $c_d$ in a document is the following context resemblance function CR:

\begin{displaymath}
\mbox{\sc Cr}(c_q,c_d) = \left\{
\begin{array}{ll}
\frac{1+\...
...0 & \mbox{if $c_q$\ does not match $c_d$}
\end{array} \right.
\end{displaymath} (52)

where $\vert c_q\vert$ and $\vert c_d\vert$ are the number of nodes in the query path and document path, respectively, and $c_q$ matches $c_d$ iff we can transform $c_q$ into $c_d$ by inserting additional nodes. Two examples from Figure 10.6 are $\mbox{\sc Cr}(c_{q_4},c_{d_2}) = 3/4 = 0.75$ and $\mbox{\sc Cr}(c_{q_4},c_{d_3}) = 3/5 = 0.6$ where $c_{q_4}, c_{d_2}$ and $c_{d_3}$ are the relevant paths from top to leaf node in $q_4$, $d_2$ and $d_3$, respectively. The value of $\mbox{\sc Cr}(c_q,c_d)$ is $1.0$ if $q$ and $d$ are identical.

The final score for a document is computed as a variant of the cosine measure (Equation 24, page 6.3.1 ), which we call SIMNOMERGE for reasons that will become clear shortly. SIMNOMERGE is defined as follows:

\begin{displaymath}
\mbox{\textsc{SimNoMerge}}(q,d)=
\sum_{c_k \in B}
\sum_{c_l ...
...)
}
{
\sqrt
{
\sum_{c \in B,t \in V}\mbox{weight}^2(d,t,c)
}
}
\end{displaymath} (53)

where $V$ is the vocabulary of non-structural terms; $B$ is the set of all XML contexts; and $\mbox{weight}(q,t,c)$ and $\mbox{weight}(d,t,c)$ are the weights of term $t$ in XML context $c$ in query $q$ and document $d$, respectively. We compute the weights using one of the weightings from Chapter 6 , such as $\mbox{idf}_t \cdot \mbox{wf}_{t,d}$. The inverse document frequency $\mbox{idf}_t$ depends on which elements we use to compute $\mbox{df}_t$ as discussed in Section 10.2 . The similarity measure $\mbox{\textsc{SimNoMerge}}(q,d)$ is not a true cosine measure since its value can be larger than 1.0 (Exercise 10.7 ). We divide by $\sqrt
{
\sum_{c \in B,t \in V}\mbox{weight}^2(d,t,c)
}$ to normalize for document length (Section 6.3.1 , page 6.3.1 ). We have omitted query length normalization to simplify the formula. It has no effect on ranking since, for a given query, the normalizer $\sqrt
{
\sum_{c \in B,t \in V}\mbox{weight}^2(q,t,c)
}$ is the same for all documents.

Figure 10.9: The algorithm for scoring documents with SIMNOMERGE.
\begin{figure}\begin{algorithm}{ScoreDocumentsWithSimNoMerge}{q,B,V,N,normalizer...
...] / normalizer[n]
\end{FOR}\\
\RETURN{score}
\end{algorithm}\par\end{figure}
The algorithm for computing SIMNOMERGE for all documents in the collection is shown in Figure 10.9 . The array normalizer in Figure 10.9 contains $\sqrt
{
\sum_{c \in B,t \in V}\mbox{weight}^2(d,t,c)
}$ from Equation 53 for each document.

Figure 10.10: Scoring of a query with one structural term in SIMNOMERGE.
\begin{figure}\psset{unit=1cm}
\begin{pspicture}(0,0.5)(14,5.5)
\par
\rput(1,5){...
...dots \\
\cline{1-1}\cline{3-6}
\end{tabular}}
\par
\end{pspicture}
\end{figure}

We give an example of how SIMNOMERGE computes query-document similarities in Figure 10.10 . $\langle c_1,t \rangle$ is one of the structural terms in the query. We successively retrieve all postings lists for structural terms $\langle c',t
\rangle$ with the same vocabulary term $t$. Three example postings lists are shown. For the first one, we have $\mbox{\sc Cr}(c_1,c_1) = 1.0$ since the two contexts are identical. The next context has no context resemblance with $c_1$: $\mbox{\sc Cr}(c_1,c_2) = 0$ and the corresponding postings list is ignored. The context match of $c_1$ with $c_3$ is 0.63>0 and it will be processed. In this example, the highest ranking document is $d_9$ with a similarity of $1.0 \times 0.2+0.63 \times 0.6=0.578$. To simplify the figure, the query weight of $\langle c_1,t \rangle$ is assumed to be 1.0.

The query-document similarity function in Figure 10.9 is called SIMNOMERGE because different XML contexts are kept separate for the purpose of weighting. An alternative similarity function is SIMMERGE which relaxes the matching conditions of query and document further in the following three ways.

See the references in Section 10.6 for details.

These three changes alleviate the problem of sparse term statistics discussed in Section 10.2 and increase the robustness of the matching function against poorly posed structural queries. The evaluation of SIMNOMERGE and SIMMERGE in the next section shows that the relaxed matching conditions of SIMMERGE increase the effectiveness of XML retrieval.

Exercises.


next up previous contents index
Next: Evaluation of XML retrieval Up: XML retrieval Previous: Challenges in XML retrieval   Contents   Index
© 2008 Cambridge University Press
This is an automatically generated page. In case of formatting errors you may want to look at the PDF edition of the book.
2009-04-07