Extended Boolean model

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

The Extended Boolean model was described in a Communications of the ACM article appearing in 1983, by Gerard Salton, Edward A. Fox, and Harry Wu. The goal of the Extended Boolean model is to overcome the drawbacks of the Boolean model that has been used in information retrieval. The Boolean model doesn't consider term weights in queries, and the result set of a Boolean query is often either too small or too big. The idea of the extended model is to make use of partial matching and term weights as in the vector space model. It combines the characteristics of the Vector Space Model with the properties of Boolean algebra and ranks the similarity between queries and documents. This way a document may be somewhat relevant if it matches some of the queried terms and will be returned as a result, whereas in the Standard Boolean model it wasn't.[1]

Thus, the extended Boolean model can be considered as a generalization of both the Boolean and vector space models; those two are special cases if suitable settings and definitions are employed. Further, research has shown effectiveness improves relative to that for Boolean query processing. Other research has shown that relevance feedback and query expansion can be integrated with extended Boolean query processing.

Definitions

In the Extended Boolean model, a document is represented as a vector (similarly to in the vector model). Each i dimension corresponds to a separate term associated with the document.

The weight of term KxScript error: No such module "Check for unknown parameters". associated with document djScript error: No such module "Check for unknown parameters". is measured by its normalized Term frequency and can be defined as:

wx,j=fx,j*IdfxmaxiIdfi

where IdfxScript error: No such module "Check for unknown parameters". is inverse document frequency and fx,jScript error: No such module "Check for unknown parameters". the term frequency for term x in document j.

The weight vector associated with document djScript error: No such module "Check for unknown parameters". can be represented as:

𝐯dj=[w1,j,w2,j,,wi,j]

The 2 Dimensions Example

Script error: No such module "Multiple image".

Considering the space composed of two terms KxScript error: No such module "Check for unknown parameters". and KyScript error: No such module "Check for unknown parameters". only, the corresponding term weights are w1Script error: No such module "Check for unknown parameters". and w2Script error: No such module "Check for unknown parameters"..[2] Thus, for query qor = (KxKy)Script error: No such module "Check for unknown parameters"., we can calculate the similarity with the following formula:

sim(qor,d)=w12+w222

For query qand = (KxKy)Script error: No such module "Check for unknown parameters"., we can use:

sim(qand,d)=1(1w1)2+(1w2)22

Generalizing the idea and P-norms

We can generalize the previous 2D extended Boolean model example to higher t-dimensional space using Euclidean distances.

This can be done using P-norms which extends the notion of distance to include p-distances, where 1 ≤ p ≤ ∞Script error: No such module "Check for unknown parameters". is a new parameter.[3]

  • A generalized conjunctive query is given by:
qor=k1pk2p....pkt
  • The similarity of qor and dj can be defined as:

:sim(qor,dj)=w1p+w2p+....+wtptp

  • A generalized disjunctive query is given by:
qand=k1pk2p....pkt
  • The similarity of qand and dj can be defined as:
sim(qand,dj)=1(1w1)p+(1w2)p+....+(1wt)ptp

Examples

Consider the query q = (K1K2) ∨ K3Script error: No such module "Check for unknown parameters".. The similarity between query qScript error: No such module "Check for unknown parameters". and document dScript error: No such module "Check for unknown parameters". can be computed using the formula:

sim(q,d)=(1((1w1)p+(1w2)p2p))p+w3p2p

Improvements over the Standard Boolean Model

Lee and Fox[4] compared the Standard and Extended Boolean models with three test collections, CISI, CACM and INSPEC. Using P-norms they obtained an average precision improvement of 79%, 106% and 210% over the Standard model, for the CISI, CACM and INSPEC collections, respectively.
The P-norm model is computationally expensive because of the number of exponentiation operations that it requires but it achieves much better results than the Standard model and even Fuzzy retrieval techniques. The Standard Boolean model is still the most efficient.

Further reading

  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".
  • Script error: No such module "citation/CS1".

See also

References

<templatestyles src="Reflist/styles.css" />

  1. Script error: No such module "citation/CS1".
  2. Script error: No such module "citation/CS1".
  3. Script error: No such module "citation/CS1".
  4. Script error: No such module "citation/CS1".

Script error: No such module "Check for unknown parameters".