The Rocchio algorithm is based on a method of relevance feedback found in information retrieval systems which stemmed from the SMART Information Retrieval System developed between 1960 and 1964. Like many other retrieval systems, the Rocchio algorithm was developed using the vector space model. Its underlying assumption is that most users have a general conception of which documents should be denoted as relevant or irrelevant. Therefore, the user's search query is revised to include an arbitrary percentage of relevant and irrelevant documents as a means of increasing the search engine's recall, and possibly the precision as well. The number of relevant and irrelevant documents allowed to enter a query is dictated by the so called weights, i.e. the variables a {\displaystyle a} , b {\displaystyle b} and c {\displaystyle c} listed below in the Algorithm section.
Algorithm The formula and variable definitions for Rocchio relevance feedback are as follows:
Q → m = a Q → o + b 1 | D r | ∑ D → j ∈ D r D → j − c 1 | D n r | ∑ D → k ∈ D n r D → k {\displaystyle {\vec {Q}}_{m}=a\,{\vec {Q}}_{o}+b\,{\frac {1}{|D_{r}|}}\sum _{{\vec {D}}_{j}\in D_{r}}{\vec {D}}_{j}-c\,{\frac {1}{|D_{nr}|}}\sum _{{\vec {D}}_{k}\in D_{nr}}{\vec {D}}_{k}}
As demonstrated in the formula, the associated weights ( a {\displaystyle a} , b {\displaystyle b} , c {\displaystyle c} ) are responsible for shaping the modified vector in a direction closer, or farther away, from the original query, related documents, and non-related documents. In particular, the values for b {\displaystyle b} and c {\displaystyle c} should be incremented or decremented proportionally to the set of documents classified by the user. If the user decides that the modified query should not contain terms from either the original query, related documents, or non-related documents, then the corresponding weight ( a {\displaystyle a} , b {\displaystyle b} , c {\displaystyle c} ) value for the category should be set to 0. In the later part of the algorithm, the variables D r {\displaystyle D_{r}} , and D n r {\displaystyle D_{nr}} are presented to be sets of vectors containing the coordinates of related documents and non-related documents. In the formula, D → j {\displaystyle {\vec {D}}_{j}} and D → k {\displaystyle {\vec {D}}_{k}} are the vectors used to iterate through the two sets D r {\displaystyle D_{r}} and D n r {\displaystyle D_{nr}} and form vector summations. These sums are normalized, i.e. divided by the size of their respective document set. In order to visualize the changes taking place on the modified vector, please refer to the image below. As the weights are increased or decreased for a particular category of documents, the coordinates for the modified vector begin to move either closer, or farther away, from the centroid of the document collection. Thus if the weight is increased for related documents, then the modified vectors coordinates will reflect being closer to the centroid of related documents.
Time complexity
… excerpt ends here. Continue reading the full article.

