Skip to content
Surf Wiki
Save to docs
general/information-retrieval-techniques

From Surf Wiki (app.surf) — the open knowledge base

Binary independence model


In computing and information science, the binary independence model (BIM) is a probabilistic information retrieval technique. The model makes some simple assumptions to make the estimation of document/query similarity probable and feasible.

Definitions

The binary independence assumption states that documents are binary vectors; that is, only the presence or absence of terms in documents is recorded. Terms are independently distributed in the set of relevant documents and they are also independently distributed in the set of irrelevant documents. The representation is an ordered set of Boolean variables. That is, the representation of a document or query is a vector with one Boolean element for each term under consideration. More specifically, a document is represented by a vector where if term t is present in the document d and if it's not. Many documents can have the same vector representation with this simplification. Queries are represented in a similar way. "Independence" signifies that terms in the document are considered independently from each other and no association between terms is modeled. This assumption is very limiting, but it has been shown that it gives good enough results for many situations. This independence is the "naive" assumption of a Naive Bayes classifier, where properties that imply each other are nonetheless treated as independent for the sake of simplicity. This assumption allows the representation to be treated as an instance of a Vector space model by considering each term as a value of 0 or 1 along a dimension orthogonal to the dimensions used for the other terms.

The probability P(R|d,q) that a document is relevant derives from the probability of relevance of the terms vector of that document P(R|x,q). By using the Bayes' rule we get:

: P(R|x,q) = \frac{P(x|R,q)*P(R|q)}{P(x|q)}

where P(x|R=1,q) and P(x|R=0,q) are the probabilities of retrieving a relevant or nonrelevant document, respectively. If so, then that document's representation is x. The exact probabilities can not be known beforehand, so estimates from statistics about the collection of documents must be used.

P(R=1|q) and P(R=0|q) indicate the previous probability of retrieving a relevant or nonrelevant document respectively for a query q. If, for instance, we knew the percentage of relevant documents in the collection, then we could use it to estimate these probabilities. Since a document is either relevant or nonrelevant to a query we have that:

: P(R=1|x,q) + P(R=0|x,q) = 1

Query Terms Weighting

Given a binary query and the dot product as the similarity function between a document and a query, the problem is to assign weights to the terms in the query such that the retrieval effectiveness will be high. Let p_i and q_i be the probability that a relevant document and an irrelevant document has the i term respectively. Yu and Salton, who first introduce BIM, propose that the weight of the i term is an increasing function of Y_i = \frac{p_i *(1-q_i)}{(1-p_i)*q_i}. Thus, if Y_i is higher than Y_j, the weight of term i will be higher than that of term j. Yu and Salton showed that such a weight assignment to query terms yields better retrieval effectiveness than if query terms are equally weighted. Robertson and Spärck Jones later showed that if the i term is assigned the weight of \log Y_i, then optimal retrieval effectiveness is obtained under the binary independence assumption.

The binary independence model was introduced by Yu and Salton. The term binary independence model was coined by Robertson and Spärck Jones who used the log-odds probability of the probabilistic relevance model to derive \log Y_i where the log-odds probability is shown to be rank equivalent to the probability of relevance (i.e., P(R|d,q)) by Luk, obeying the probability ranking principle.

References

References

  1. (1976). "Precision Weighting – An Effective Automatic Indexing Method". Journal of the ACM.
  2. (1976). "Relevance weighting of search terms". Journal of the American Society for Information Science.
  3. (2022). "Why is information retrieval a scientific discipline?". Foundations of Science.
  4. (1977). "The Probability Ranking Principle in IR". Journal of Documentation.
Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about Binary independence model — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report