The invention is an improved retrieval system and method. Many pattern recognition tasks, including estimation, classification, and the finding of similar objects, make use of linear models. For example, many text retrieval systems represent queries as linear functions, and retrieve documents whose vector representation has a high dot product with the query. The fundamental operation in such tasks is the computation of the dot product between a query vector and a large database of instance vectors. Often instance vectors which have high dot products with the query are of interest. The invention relates to a random sampling based retrieval system that can identify, for any given query vector, those instance vectors which have large dot products, while avoiding explicit computation of all dot products.
|
5. A method of retrieving information from a database, the database comprising records each having a set of attribute values and a record identifier, comprising the steps of:
(a) sampling from records of a database, to generate a sampled representation of the database according to a probability distribution over the records and attributes of the database, i) the probability distribution being constructed as a function of the attribute values in the records, the construction being done by a weighted, directed graph representing the database, and ii) the database sampling unit determining the probability distribution by random walks on the weighted, directed graph; (b) receiving a query input; and (c) applying the query input to the sampled representation to return results.
1. A retrieval system for retrieving data from a database, the database comprising records each having a set of attribute values and a record identifier, comprising:
a database sampling unit, for sampling from the records in the database and generating a sampled representation of the database according to a probability distribution over the records of the database, the probability distribution being constructed as a function of the attribute values in the records, and the database sampling unit being constructed to generate a weighted, directed graph representing the database, the database sampling unit determining the probability distribution by random walks on the weighted, directed graph; a query input unit, for receiving a database query; and a query processing unit, operatively connected to the query input unit and to the database sampling unit, which applies the database query to the sampled representation of the database to return results. 2. A retrieval system according to
3. A retrieval system according to
4. A retrieval system according to
6. A method according to
(d) outputting a set of lists of record identifiers as the sampled representation.
7. A method according to
(e) calculating an approximation of the dot product between the query input and each database record, to return the results.
8. A method according to
(f) returning results only on entries whose approximated dot product with the query input exceeds a predetermined threshold.
|
The invention relates to information retrieval technology.
In pattern recognition or retrieval tasks, a database of empirical data to be processed (images, signals, documents, etc.) is commonly represented as a set of a vectors x1, . . . , xn of numeric feature values. Examples of feature values include the number of times a word occurs in a document, the coordinates of the center of mass of black pixels in an image, or the set of spectral coefficients output by a speech analyzer.
In the art, the desired processing of sampled empirical data or instances is often implemented using linear models. The knowledge required to carry out the processing is captured in a vector of numeric weights, q=(q1, q2, . . . , qd). Each instance is processed by taking the dot product of the weight vector q with each of the vectors x1, . . . , xn of feature values. The weights in q may be set by hand, or by supervised learning from training data, so that the products q·xi satisfy some desired goal. In classification problems, the goal is that values of q·xi are high when xi is "related" to or lies within a particular class represented by q. In regression problems, the goal is that q·xi approximate some numeric value associated with instance xi.
In some cases, computing the proximity of one instance to another can be cast in linear form. For instance, if q and x are normalized to have Euclidean norm of 1.0 and are viewed as unit length vectors, then q·x is the cosine of the angle between them, a commonly used proximity measure. (In this case, the roles of instance vector and weight vector are interchangeable.)
These pattern recognition or retrieval systems are applied, for instance, in statistical information retrieval systems. Documents and queries are represented as vectors of terms or features. The user query can be treated as a sample document, whose similarity to database documents must be found (see G. Salton and M. J. McGill, "Introduction to Modern Information Retrieval", McGraw-Hill, New York 1983), or it can be used as evidence toward setting the parameters of a probabilistic classification function, which is then applied to database documents (see S. E. Robertson and K. S. Jones, "Relevance Weighting of Search Terms", Journal of the American Society for Information Science, May-June 1976). In both cases, linear models are widely used and continue to be developed (see D. D. Lewis, et al. "Training Algorithms for Linear Text Classifiers, Proceedings of the 19th Annual International ACM SIEIR Conference, 1996).
Applying a weight vector q to a database of instance vectors means computing the vector by matrix product qT AT, where A is a matrix whose rows {x1, . . . , xn } are the instance vectors. The value of the ith entry of qT AT corresponds to the similarity of the instances represented by q and xi. Computing the cosine proximity measure among all pairs of instances is equivalent to computing the matrix product AAT. Calculations of this sort are common in the art, but expensive. In text retrieval, for example, the number of instances (documents) can be 104 to 106 and the number of features (words or phrases) may be 100,000 or more. This is an expensive task in terms of computing resources, even when utilizing reductive sparse matrix and indexing techniques. Dense instances with hundreds of features are also common, for example, with factor analytic text representations or in image retrieval. There is therefore a need for ever more efficient recognition and retrieval technology.
The invention solving these and other problems in the prior art relates to a random-sampling based retrieval system that identifies high-valued entries of nonnegative matrix products, without the need for full computation of the product. The system assigns scores to each entry of qT AT. In contrast to some existing approximate scoring techniques (see H. Turtle and J. Flood, "Query Evaluation: Strategies and Optimizations", Information Processing and Management Vol. 24(5), 1988), the expected value of the scores is equal to the true value that would be obtained with the full computation. Furthermore, the variance of the scores is independent of the weight distribution of the instance vectors. It depends only on the (relative) value of the entry and decreases for higher-valued entries. Among other features and advantages, the improved retrieval system of the invention allows retrieval and recognition tasks to be carried out on a physically smaller set of database storage information, and processor computation, including floating-point calculation, is reduced.
FIG. 1 illustrates a schematic diagram of the improved retrieval system of the invention;
FIG. 2 illustrates a first set of experimental data related to the improved retrieval system of the invention;
FIG. 3 illustrates a second set of experimental data related to the improved retrieval system of the invention;
FIG. 4 illustrates a third set of experimental data related to the improved retrieval system of the invention;
FIG. 5 illustrates a fourth set of experimental data related to the improved retrieval system of the invention;
FIG. 6 illustrates a fifth set of experimental data related to the improved retrieval system of the invention;
FIG. 7 illustrates a sixth set of experimental data related to the improved retrieval system of the invention;
FIG. 8 illustrates a flowchart of the operation of the improved retrieval system of the invention.
As illustrated in FIGS. 1-8, the improved retrieval system 10 of the invention generally relates to processing of a database 20, generally referred to as "A" herein. Database 20 may represent text, numerical data, digitized images or sound, or other information, generally stored in matrix fashion. The content of A may be stored on hard drive, optical drive or other storage media, or could be accessed online.
In the improved retrieval system 10 of the invention, database 20 is processed by retrieval processing unit 30. Retrieval processing unit 30 illustratively consists of a CPU 40, linked by an appropriate bus to database 20 and having random-access memory 50, which is typically at least on the order of megabytes of storage.
Retrieval processing unit 30 operates under program control to analyze and treat the entity A, according to the following description and principles. Persons skilled in the art will appreciate that programming of retrieval processing under 30 by sets of instructions to operate CPU 40 are known in the art, as for example C, C++, or other appropriate coding, B, which may be stored in program storage 60. However, it will also be appreciated by persons skilled in the art that retrieval processing unit 30 could suitably be implemented by dedicated special-purpose hardware, or other circuitry. When retrieval or recognition results are prepared by the improved retrieval system 10, they may be presented to the user immediately by way of a monitor (CRT or otherwise, not shown) or recorded in storage area 20, 60, or on other disk, tape, optical or other media.
In pattern recognition applications, the exact value of q·x is not critical, and in the invention approximate dot products can be used instead of true ones. For instance, the values that vectors have on each dimension are often set by coarse heuristics, with the result that small differences in dot products between vectors have little consequence. Furthermore, many tasks do not require exact values. In a classification task, it may only need to be known whether q·x exceeds some threshold value for class membership. In an information retrieval system, for instance, only the documents with the 10 highest scores may be desired for display to the user, without needing exact knowledge of the score of any document. Advantageously, the invention is also applicable when exact top values are needed, for example, when the goal is to identify the 10 nearest neighbors. In such tasks, the scores are used to identify a small set of entries that are likely to have large values or to contain all relevant values. The exact dot product evaluation is carried out only for these selected entries.
The running time for execution of retrieval in the invention depends on the accuracy required for the task at hand, and on the distribution of the scored values. The system of the invention is particularly suited for problems where a typical query q has a small number of relevant instances (high dot product values) and the bulk of instances have significantly smaller values. As a rough "asymptotic" comparison, the exact computation of all dot products requires O(dn) operations (for dense instances). The system of the invention, for the task of isolating the highest dot product (possibly with some others), performs ##EQU1## (at most O(n)) operations. Furthermore, each sampling operation is simpler: memory access and a counter increment, versus a floating-point multiply-add. In experiments with large information retrieval datasets, the inventors have demonstrated speedups of 5 to 15 fold without significantly compromising the accuracy of the results.
It is significant to note that the improved retrieval system 10 of the invention applies directly only to nonnegative vectors and matrices. Nonnegativity is common, but not universal in pattern recognition tasks. Negative values may arise when one of the vectors is a linear classifier or regression function. Negative values in example representations are less common, but occur in signal processing tasks and occasionally even in text processing. Herein, a scheme for identifying large dot product values for real-valued matrices is described. Considerable speedups with negligible loss of accuracy for the data sets examined, have been demonstrated.
1. The vectors are transformed to a nonnegative form. On data examined, the "positive" dot products values are highly correlated with the original dot product values. The inventors conjecture that this dependence is common.
2. A sampling algorithm is used to identify vectors with high "positive" dot products.
3. The exact original dot products are explicitly computed only for (the small set of) vectors with high "positive" scores.
A variety of tasks involve finding examples in close proximity to other examples, and may be processed using improved retrieval system 10. This may be a goal in itself, or may be a means of performing classification or regression. Frequently seen proximity problems are closest pair, nearest neighbors, and bichromatic nearest neighbors. A variety of proximity measures can be used in such tasks. As mentioned above, the cosine correlation can be implemented directly as a dot product. Another common measure is the Euclidean distance, which is related to the dot product as follows:
∥u-v∥2 =∥u∥2 +∥v∥2 -2u·v.
Hence, for normalized vectors, large cosines identify small distances. Simple reductions can handle different size norms. The caveat is that the system of the invention can not distinguish between very near neighbors (that is, between points within some ε-neighborhood of a point, where ε is a small fraction of the norm) . Hence, it is useful in data where the ε-neighborhoods are not very large or in applications where most of the near neighbors are relevant and are far from the bulk of irrelevant points.
These proximity problems (likewise, computing all dot products) are trivially solvable in O(dn2) time (for dense data, for sparse data the time depends on the nonzero structure). Some known algorithms perform better when the dimension d is very small. Bentley et al. (J. L. Bentley et al., "Optimal Expected-Time Algorithms for Closest Point Problems", ACM Trans. Math Software, Vol. 6, 1980) have showed better expected asymptotic performance for instances where the dimension is constant, and the vectors are randomly sampled from certain distributions. Arya et al. (S. Arya et al., "an Optimal Algorithm for Approximate Nearest Neighbor Searching", proceedings of 5th ACM-SIAM Symposium on Discrete Algorithms, ACM-SIAM, 1994) established better worst-case performance for constant dimension, by allowing approximation. They presented an O(n log n) time algorithm that computes (1+ε)-nearest neighbors (for any fixed constant ε and d.) The running time of these algorithms is near-linear in n, but exhibits exponential dependence on d. For high dimensions, even for the average or approximate problems, the O(dn2) bound is the best known (short of using fast matrix multiplication). The improved retrieval system of the present invention exhibits significantly faster running times for many "real" instances.
In terms of preprocessing a sampling carried out by the system of the invention, consider a product
pn1xnk+1 =A1n1xn2 . . . Aknkxnk+1
of k≧2 nonnegative matrices. Sampling in the invention inputs the matrices A1, . . . , Ak of database 20 and performs the following manipulations:
.circle-solid. Preprocessing stage: Requires linear time in the number of nonzero entries in A2, . . . , Ak.
.circle-solid. Scoring a row: Input iε{1, . . . , n1 }, S
--Process ith row: in linear time in the number of nonzeros in [A]i the row is processed and
Mi =Σh=1nk+1 [P]ih is computed.
--Determine the number of samples S: S can be obtained s input, determined online, or computed using Mi and some accuracy criteria.
--sample. Repeat S times: (O(k) time per sample) return an index jε[1, . . . , nk+1} such that j is selected with probability ##EQU2##
The processing of the rows of A1 of database 20 is independent of the preprocessing. Therefore, this approach is applicable in an online setting, where the matrices A2, . . . , Ak are fixed, and vectors qεn2 are presented online (this can be viewed as supplying the matrix A1 online row by row). When an online implementation of the invention is presented with a vector q, the processing takes linear time in the number of nonzeros of q and the sampling takes (O(k) time per sample.
Consider an input vector q (or a row of A1 of database 20) and let S be the number of samples. The algorithm returns a score vector (S1, . . . , Snk+1), computed in retrieval processing unit 30, where Sj, the score of jε{1, . . . nk+1 } is the number of times j was sampled (S=Σj=1nk+1 Sj). Let m=qT A2. . . Ak =(m1, . . . , mnk+1). The samples provide information about the weight distribution of m in a fraction of the time needed to compute m explicitly. M=Σh=1nk+1 mh is computed while processing q. The expected value of Sj equals mj S/M. Hence, Sj M/S an unbiased estimator for mj.
The preprocessing stage in the invention constructs a k+1-layer directed graph, where edges are directed from layer j to layer j+1 and all edges are assigned transition probabilities. A sample for row i of A1 is obtained by a random walk from the ith node in the first layer to the (k+1)st layer. (The index of the last node reached constitutes the sample.) This graphing structure may for instance be calculated in RAM 50.
In terms of graphical representation of matrices and matrix products, matrix A of dimension n1 ×n2 is represented by a weighted directed bipartite graph GA, with n1 nodes {v1, . . . , v1 } at the lower level and n2 nodes {v1, . . . , vn2 1 } at the upper level. For 1≦i≦n1 and 1≦j≦n2, there is a directed edge from vi to vj if and only if Aij ≠0. The weight w(e) of the edge e=(vi to vj) is Aij. It will be appreciated by persons skilled in the art that the outdegree of vi (resp., indegree of vj) is the number of nonzeros in the ith row (resp., jth column) of A. The sum of the weights of edges incident to vi is the weight of the ith row.
The matrix product P=A1 . . . Ak (where Ai is of dimensions ni ×ni+1) is represented as a layered graph with (k+1) layers. For 1≦i≦k+1, the ith layer has ni nodes and the edges between the ith and the (i+1)st layers are as in the bipartite graph GAi. For 1≦i≦k+1, let Vi ={v1i,v2i, . . . , vnii } be the set of nodes at layer i.
The improved retrieval system 10 of the invention assigns probabilities p:E to the edges of the product graph, such that random walks from node v1i εV1 to layer Vk+1, according to the edge probabilities, correspond to samples. The probabilities are computed by first computing, for every 1≦i≦nj in every subproduct, Aj. . . Ak (1≦j≦k), the sum Wji =Σh=1nk+1 [Ai. . . Ak ]ih (the weight of the ith row of Aj. . . Ak). We denote Wji ≡W(vji).
.circle-solid. Compute Wji.
1. layer k nodes: For 1≦j≦nk, set Wjk←Σh=1nk+1 [Ak ]ih (the sum of the weights of out-going edges from vjk to Vk+1).
2. For i=k-1 down to 1: (ith layer nodes)
For every node vji in layer i, set Wji to the sum of the products w(vji,u)W(u), for all u such that is an outgoing edge to Vi+1.
.circle-solid. Assign Probabilities
For every pair of nodes {vji,vli+1 } such that the edge e=(vji,vli+1) exists, set ##EQU3##
To sample S times from the ith row of P: Trace S random walks from vi1 to layer k+1. For 1≦j≦nk+1 let Sj, the score of j, be the number of random walks that terminated in vjk+1. The quantity of ##EQU4## has expected value [P]ij.
It can be shown that the running time is as claimed. The correctness is established by the propositions below.
Proposition 2.2 For i=1, . . . , k and 1≦j≦ni,
Wji =Σh=1nk+1 [A1. . . Ak ]jh.
Proof. By downward induction on i=k,k+1, . . . , 1. Immediate for i=k. Assume the proposition holds for i>l We have ##EQU5##
Proposition 2.3. The probability that a random walk from node vjl at layer l(1≦l≦k) terminates at the node ##EQU6##
Proof. By downward induction on l. Immediate for l=k: the probability to an edge (vjk, vik+1) equals ##EQU7## Assume the proposition holds for l>r. The probability that a random walk from vjr ends at vik+1 equals ##EQU8##
Proposition 2.2 asserts that ##EQU9##
Hence, the probability that the walk terminates at vik+1 is ##EQU10## This concludes the proof of running time parameters in the invention, in this regard.
In terms of accuracy and variance of scores, in the operation of the system of the invention consider some row i ε{1, . . . , nk+1 } of P. Let ##EQU11## denote the probability that a single sample is j. Sj has a binomial distribution with parameters S and pj. The expected value of Sj is Spj. The probability that Sj=t (j is sampled t times), as is known in the art, is ##EQU12## Using the normal approximation, ##EQU13## Equation (2.1) ##EQU14##
In terms of practical implementation, for the applications discussed here the sampling algorithm for products of k=2 non-negative matrices is applied. Generally, there is a database matrix Adxn, where n is the number of instances and d is the number of features. Query vectors of dimension d are either provided beforehand or presented online to improved retrieval system 10. For an input query q and a parameter S (number of samples), the system of the invention using CPU 40 computes a (possibly sparse) integral score vector (S1, . . . , Sn) where Si is the number of times i was sampled.
The sampling approach employed in the system of the invention has efficient implementations for either dense or sparse matrices (sparsity is fully exploited). The system of the invention effectively replaces the database matrix A by a set of lists 70 L1, . . . , Ld of indices {1, . . . , n} of sampled instances. For each input query q the system 10 first processes q to determine how many samples are needed, from each of the d lists Li contained in list 70. It then retrieves these samples from the appropriate stored lists, and counts how many times each of {1, . . . , n} was sampled. Presampling improves performance because the same samples are used for different queries. Hence, while evaluating a query, each sample amounts to a memory lookup, a simpler operation that replaces drawing randomly from a specified distribution.
The list size li =|Li |(i=1, . . . n) is selected to be the maximum number of samples from Li expected to be required by a query. In experiments the inventors selected the li 's to be the maximum required when the database instances are used as queries. All sample matrices required considerably less storage than the original database matrix 20, a practical advantage in any system administration. One caveat of presampling is that it introduces correlations between results of independent queries (biases towards the same subset of instances). This dependency is not an issue in many applications. Furthermore, the correlation can be reduced by more presampling, and by using some randomization in the selection within each list.
Preprocessing: Generate the Sample Matrix
.circle-solid. For each row 1≦i≦d of A:
Compute the sum ai ←Σh [A]ih.
Initialize Li to the empty list.
.circle-solid. Repeat li times (desired number of samples):
Draw an instance jε{1, . . . , n} at random, where j has probability ##EQU15## and append it to the list Li. Process a Query Vector q (With S Samples):
1. For every 1≦j≦d such that
qj ≠0:let qj40 ←qj aj. (Σj qj'=Σh [qT A]h)
2. For each 1≦i≦d, determine the number of samples ci needed from the list Li. (S=Σi ci) We choose ci such that it has expected value ##EQU16## 3. Scoring: For i=1, . . . , d: Repeat ci times:
.circle-solid. Let sε{1, . . . , n} be the next sample in Li.
.circle-solid. If s is encountered for the first time: create a counter for s with value 1.
Otherwise, increment the counter of s.
4. For jε{1, . . . n}, set Sj (the score of j) to the value of the counter (if initialized), and 0 otherwise.
In the improved retrieval system of the invention, high scores correspond to high matches. This correspondence increases with the number of samples (see Equation 2.1). S is typically chosen as a function of the query vector, the desired output, and tradeoffs between time and accuracy.
Consider a query q and the match vector m=qT A. Recall that the expected value of Si equals Smi /M, where M=Σj=1n mj is computed by the scoring algorithm. The expected value of Si M/S equals mi. Hence, to identify instances where mi ≧α instances where Si M/S≈α (or Si M/S>α-ε≡T) are considered. S=H/M (where H is in the range 20-100) was used. The values of H and the threshold T determine exactly the probability of an instance with a certain value of mi to score above or below T. Hence, appropriate values can be set in advance for objectives such as "isolate a set with at least at least 90% of matches of value α and above and at most 10% of matches of value α-0.1 and below". (Values are set for the "worst case" where mi ε{α, α-0,1}, performance will be better when the distribution is more skewed.) In some cases it is worthwhile to determine S and T online. For example, if one objective is to isolate a set of instances with a high fraction of high matches, a clue on the distribution of the mi 's is needed. Typically, there are very many instances with low match values and a small fraction of them, which could still be a significant number, have high scores. This number decreases with S. Hence, S can be determined online until a satisfactory fraction of the high scoring objects are high matches.
In some applications of the invention it is desirable to accurately identify the high matches and their exact values. To achieve this goal, the invention uses the scores obtained by the sampling algorithm in conjunction with dot products computations. First, sampling is used to identify and rule out instances that are extremely unlikely to be high matches. Then, the dot products of q with the remaining instances are computed. This yields considerable speedups over fully computing the product qT A.
.circle-solid. Input: A query q and parameters T threshold and H Hit factor.
.circle-solid. Apply the sampling algorithm with S=HM samples to obtain scores (S1, . . . Sn).
.circle-solid. Consider the subset I⊂{1, . . . , n} of objects with score that is at least T.
.circle-solid. Compute the dot product qT xi for all iεI and identify the highest matches.
The choice of the parameters H and T determines a tradeoff between the size of the set I (the smaller the better), the number of high matches that are filtered out, and the cost of sampling.
By Equation 2.1, ##EQU17##
To obtain a small size set I, the threshold T should be such that T/H is larger than most values of {m1, . . . mn }. On the other hand, T and H should be such that T/H is below the magnitude of the lowest match which is of interest. The likelihood that matches above T/H+ε are filtered out, or values below T/H-ε are in the set I, decreases with S.
As an experimental test of the system of the invention, the inventors chose the task of estimating the largest entries in each row of AT Am were each of the rows {X1. . . Xn } of A is the representation of a textual document as a set of numeric feature values. This finds, for each document, its set of nearest neighbors, under a dot product based proximity function. In information retrieval, such sets of nearest neighbors can be used to support hypertext browsing or in doing a cluster analysis of the data. Finding nearest neighbors has similar computational characteristics to running large numbers of queries or other linear classifiers against the document database.
Different methods of representing texts will give document matrices with very different properties. The first experimental result describes the challenging case, where the representation yields a dense matrix of real-valued document representation. All experiments were run under similar load conditions using one processor of a SGI Challenge computer with 1 gigabyte of RAM.
Several information retrieval approaches have been proposed in the prior art which model the observed matrix of document/word values as having a simpler underlying structure in terms of document clusters, word clusters, or latent factors. The most popular such approach is Latent Semantic Indexing (LSI) (see S. Deewestar, et al., "Indexing by Latent Semantic Indexing", Journal of American Society for Information Science, Vol. 41(6), September 1990), which is based on singular value decomposition techniques. The sparse document vectors Xi ε+1 are replaced by dense d-dimensional vectors xi εd where d <<t (typically, d is of order 102). The coordinates of xi are linear combinations of the coordinates of xi, that is, the decomposition provides a transformation matrix Tεtxd such that xi =xT T and hence, the new database matrix is A=AT. The SVD decomposition guarantees that AAT is the best least-square approximation to AAT that can be provided by a rank d matrix Aεnxd. Values of d of a few hundred typically give the best effectiveness.
When using LSI for text retrieval, a user query is treated as a vector q of length t, and then transformed to a length d latent vector q(=qT T). The goal then is to find the set of objects I⊂{1, . . . , n} such that q·x is large. This again amounts to identifying the largest entries in the product qAT.
For the present experiment a collection of 5,000 encyclopedia articles was used for database 20, originally represented as a 5,000 by 75,714 matrix of term weights, similar to those used below. The LSI procedure was applied to this matrix, producing a dense 5,000 document by 320 factor matrix A, where the euclidean norm of each document vector is normalized to 1. The invention was tested by attempting to find all large document-document matches, in this case all large values in AAT.
As an aside concerning negative entries, even when (as is usual) the raw document-term matrix A is non-negative, it is possible that T and thus A contain negative entries. To address this, the invention preferably applies another transformation to the document or query vectors. For every such vector q, q is defined such that
q2i =max{0,qi } (4.2)
q2i+1 =-min{0,qi } (4.3)
Note that the vectors q are non-negative. The product q·xi is referred to as the positive contribution of the product q·xi. The sampling algorithm is applied to the non-negative database matrix Anx2d and non-negative query vectors q. It identifies (and scores) the objects with highest positive contributions. The exact (original) dot products are then explicitly computed for documents with high scores. The underlying assumption is that high positive contribution is highly correlated to high matches. This holds when different features are not independent (as is the case for datasets used by the inventors). The dependence for a dataset "ency320.5000" is visualized in FIGS. 2 and 3. FIG. 2 plots the positive contribution vs. dot product value for 106×103 document pairs with dot product above 0.55 in the dataset ency320.5000. FIG. 3 plots positive contribution vs. dot product for all pairs of 500 of the documents. In FIG. 4 this dependence is visualized for all pairs of 156 vectors from the Isolet data set (Isolated Letter Speech Recognition). Each vector corresponds to a voice sample of a spoken letter. Normalized vectors with 617 attributes were used.
A combined sampling and partial dot products computation (as described above) was applied to the dataset ency320.5000. A sampling algorithm with parameters H and T was first applied on the positive matrix A. That is, for a "query" q(a row of AT), we used S=H(qT A)T e samples were used. For all instances with score above T, the exact dot product value (q·xi) was computed. The table in FIG. 5 lists results for several choices of the parameters H and T. For each choice the running time, number of samples used, the number of dot products computed (equals the number of objects with scores at least T), and the number of objects found with match at least 0.55, 0.6, . . . , 0.85 (recall that we used normalized vectors, hence all matches are in [0,1]) are listed. The first row of the table (algorithm Full) contains the performance data for the naive algorithm that computes all dot products. Note that each dot product computation amounts to 320 float multiply-adds, whereas each sampling step amounts to a memory lookup and a counter increment. Significant speedups are obtained with negligible loss of accuracy. For example, Algorithm R1 utilizes only 11% of the CPU time of Full and identifies 99.8%, 99.3%, 98.4%, 96.7%m 94.2% of the matches above 0.85, 0.80, 0.75, 0.70 and 0.65, respectively. Algorithm R5 utilizes 20% of the CPU time of Full and identifies 99% of matches over 0.55.
Note that even though the scoring is with respect to the positive contributions of the dot products, the final dot products and the results in FIG. 5 are for the actual values. The sizes of the sample matrices (computed in the preprocessing) are 738,801 for R1 and R2, 886,563 for R3 and R4 and 1,182,037 for R1. Hence, the precomputed samples require small additional storage. These sizes also demonstrate the effectiveness of presampling.
As a second experiment, the improved retrieval system 10 was applied to a collection of 22,173 Reuters newswire articles. The matrix form of the data has 22,173 rows and 106,113 columns, with each column representing a word. Each matrix entry was a function of the word's frequency in the document, computed using the Cornell "ltc" weighting. This weighting formula has been shown to be effective in making proximity of document vectors correspond more closely to similarity of meaning (see C. Buckley et al., "The Effect of Adding Relevance Information", SIGIR 94: proceedings Springer-Varlag, London, 1994). The resulting matrix is sparse, with about 2×106 nonzeros. The vector for each document is normalized to have Euclidean norm of 1.0, so that dot product between two document vectors is their cosine correlation.
Information retrieval systems typically compute the dot product of a query vector with a collection of sparse document vectors by making use of an inverted file (see I. H. Witlan et al., "Managing GigaBytes", Von Nostraud Reinhold, New York, 1994) of document vectors. The inverted file is the appropriate storage for efficient sparse matrix multiplication. For each indexing term, a list of the id's of all documents with a nonzero weight for that term, plus the weights themselves, are stored. The dot product of a query vector with every document vector can be computed by examining only the inverted lists for those computed by examining only the inverted lists for those terms where the query vector has a nonzero value. The inventors compared their system to computing the dot products with a publicly available inverted file-base IR system, SMART (available from direct/pub/smart on ftp.cs.cornell.edu.).
The inventors examined using the sampling aspect of the invention by itself, and in conjunction with dot product evaluation of high scoring matches. The use of sampling alone has the advantage of reduced storage requirements, since after preprocessing, only the sample matrix is needed to process queries. The combined algorithm, however, yielded more accurate results. All running times listed include preprocessing time for reading the matrix and building the sample matrix.
For dense data, the running time depends linearly in the number of dot products evaluated. However, sparse matrix techniques make a computation of the full product much more efficient than evaluating all dot products individually. For the Reuters dataset above, the time required for sparse multiplication was comparable to evaluation 10% of dot products individually. Hence, the combined algorithm is effective for sparse data only when a very small fraction of dot products are being evaluated.
The performance of the invention was tested with respect to the goals of identifying all k nearest neighbors and identifying all high matches. For these goals, the full exact matrix multiplication achieves perfect results. The sampling-based approaches are faster but incur some loss of accuracy in the results.
In terms of these tradeoffs, the invention was used to estimate for each document, the largest of the 22,1732 values produced by taking the dot product of the document with all database document vectors. As a control, SMART was used to compute all the dot products and output the top 11 nearest neighbors for each query document. This took 69 minutes. Two sampling runs were done, one taking 337,826,300 samples, yielding a running time of 7:20 minutes (9 times faster than SMART), and one taking 136,777,240 samples, with a running time of 4:35 (15 times faster than SMART). The sampling runs correctly found the nearest neighbor of a document 9,352 times (42.2%) in the first run, and 6,311 times (25.%%) in the second. The nearest neighbor was in the top 10 documents (breaking ties arbitrarily) 16,596 times (74.8%) for the first run, and 12,558 times (56.6%) in the second. It should be noted that in many cases the nearest neighbor is one of a substantial number of documents with very close similarities to the query document, and the above statistics penalize the sampling method for finding those very similar documents.
In terms of identifying all high matches, the invention was used with parameters H and T and computed the dot products for all scores over T. Algorithm Full computed (using efficient sparse multiplication) all dot products. FIG. 6 lists the parameters values H and T and the performance results for each of the algorithms. The first table lists for each algorithm, the number of precomputed samples (size of sample matrix), the number of samples needed in the execution, and the number of dot products computed. The second table lists in the first line the total number of matches of values above 0.15-0.85. Other lines contain the fraction of such matches found by each algorithm.
The task of identifying all k nearest neighbors has been considered. The invention in this respect used a combined algorithm with parameters H and k'. Sampling is applied first with parameter H. The k' highest scores are identified, and the exact dot products for these instances were computed. The algorithm returns these k' values sorted according to dot product value. The performance measure is how many of the true nearest neighbors are all in this set. That is, identify k≦k' such that all k nearest neighbors are among the k' values returned. In the algorithms used here, the same parameter H for all queries was used. The performance of the invention can be improved further for NN identification by determining H individually and online for each query. When the nearest neighbors have high values a smaller number of samples is needed. In Table 3 results for several choices of H and k' are listed. For each run, the running time is listed, and the fraction of queries for which at least k Nearest Neighbors were correctly identified (for k=1, . . . , 9) . The last two rows provide the performance when the 10 to documents from two algorithms are combined.
When k nearest neighbors are not identified correctly, it is often because the kth nearest neighbor has a low match and is close in value to a large set of other instances (in that case, it is not likely to be relevant).
From review of the foregoing, the dense matrix comparison strongly favors the improved retrieval system of the invention over the prior art. There has been little progress in speeding up retrieval with LSI document representations, beyond the obvious expedients of using parallel hardware or using few latent dimensions. To achieve a speedup of 5 to 10-fold by dropping dimensions would require using only 32-64 dimensions, which would substantially impact effectiveness.
Sparse matrix results are not a primary emphasis of the invention, since a wide variety of methods of speeding up inverted file based scoring are already known, particularly when only the top scoring documents are needed and exact results are not necessary. These include compressing inverted files (to reduce I/O), using lower precision arithmetic, ignoring some inverted lists or parts of inverted lists, and limiting the number of document score accumulators maintained. A 10 to 15-fold speedup over inverted file based matching therefore must be considered in the context of these alternative optimizations. The invention in this context does not have the nicer properties that the expected values of our scores are equal to the true scores and the variance is predictable and well behaved.
Practice of the improved retrieval system of the invention may be possible using a different and perhaps conceptually simpler scoring algorithm that randomly samples d'<<d coordinates and performs the dot products computations on these coordinates only, yielding approximate results. The running time is reduced by a factor of d/d'. The actual dot products can be approximated by multiplying the abbreviated values with d/d'. The expected value of this "scores" equals the actual values, as for our method. However, the variance is typically much higher, in particular when most of the contribution to a high dot products is from a few coordinates. Generally, the variance depends on the weight distribution of the instance vectors and therefore, is unpredictable. (That is, scores of two instances with equal dot product could have very different variance).
The foregoing description of the improved retrieval system 10 of the invention is illustrative. Variations in construction and implementation will occur to persons skilled in the art. All cited references are incorporated herein by reference, as fully as if set forth herein. The scope of the invention is intended to be limited only by the following claims.
Lewis, David Dolan, Cohen, Edith
Patent | Priority | Assignee | Title |
10049150, | Nov 01 2010 | FIVER LLC | Category-based content recommendation |
10083396, | Jul 28 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for assigning concept classification suggestions |
10180986, | Jun 16 2005 | BuzzMetrics, Ltd. | Extracting structured data from weblogs |
10282389, | Oct 17 2007 | FIVER LLC | NLP-based entity recognition and disambiguation |
10318647, | Jan 24 2000 | BLUEBONNET INTERNET MEDIA SERVICES, LLC | User input-based play-list generation and streaming media playback system |
10331783, | Mar 30 2010 | FIVER LLC | NLP-based systems and methods for providing quotations |
10332007, | Aug 24 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for generating document training sets |
10445809, | May 03 2000 | R2 SOLUTIONS LLC | Relationship discovery engine |
10448844, | Aug 31 2015 | Masimo Corporation | Systems and methods for patient fall detection |
10643031, | Mar 11 2016 | UT-Battelle, LLC | System and method of content based recommendation using hypernym expansion |
10736518, | Aug 31 2015 | Masimo Corporation | Systems and methods to monitor repositioning of a patient |
11068546, | Jun 02 2016 | NUIX NORTH AMERICA INC | Computer-implemented system and method for analyzing clusters of coded documents |
11076777, | Oct 13 2016 | Masimo Corporation | Systems and methods for monitoring orientation to reduce pressure ulcer formation |
11089963, | Aug 31 2015 | Masimo Corporation | Systems and methods for patient fall detection |
11406286, | Oct 11 2018 | Masimo Corporation | Patient monitoring device with improved user interface |
11412939, | Aug 31 2015 | Masimo Corporation | Patient-worn wireless physiological sensor |
11556598, | Jun 16 2005 | CITIBANK, N A | Extracting structured data from weblogs |
11576582, | Aug 31 2015 | Masimo Corporation | Patient-worn wireless physiological sensor |
11974833, | Mar 20 2020 | Masimo Corporation | Wearable device for noninvasive body temperature measurement |
11992308, | Oct 11 2018 | Masimo Corporation | Patient monitoring device with improved user interface |
12133717, | Aug 31 2015 | Masimo Corporation | Systems and methods for patient fall detection |
12150739, | Aug 31 2015 | Masimo Corporation | Systems and methods for patient fall detection |
6182067, | Jun 02 1997 | Knowledge Horizons PTY Ltd. | Methods and systems for knowledge management |
6240411, | Jun 15 1998 | AMDOCS DEVELOPMENT LIMITED; Amdocs Software Systems Limited | Integrating campaign management and data mining |
6256629, | Nov 25 1998 | Lucent Technologies Inc | Method and apparatus for measuring the degree of polysemy in polysemous words |
6338060, | Jan 30 1998 | Canon Kabushiki Kaisha | Data processing apparatus and method for outputting data on the basis of similarity |
6405188, | Jul 31 1998 | CXENSE ASA | Information retrieval system |
6484168, | Sep 13 1996 | Battelle Memorial Institute | System for information discovery |
6510406, | Mar 23 1999 | FIVER LLC | Inverse inference engine for high performance web search |
6523017, | May 04 1999 | AT&T Corp. | Methods and apparatus for communicating information in a supervised learning system |
6606623, | Apr 09 1999 | Industrial Technology Research Institute | Method and apparatus for content-based image retrieval with learning function |
6606624, | Aug 13 1999 | The Regents of the University of California | Apparatus and method for recommending to an individual selective information contained within a computer network |
6668248, | May 04 1999 | AT&T Corp. | Methods and apparatus for communicating information in a supervised learning system |
6757646, | Mar 22 2000 | FIVER LLC | Extended functionality for an inverse inference engine based web search |
6772170, | Sep 13 1996 | Battelle Memorial Institute | System and method for interpreting document contents |
6778995, | Aug 31 2001 | NUIX NORTH AMERICA INC | System and method for efficiently generating cluster groupings in a multi-dimensional concept space |
6847966, | Apr 24 2002 | KLDiscovery Ontrack, LLC | Method and system for optimally searching a document database using a representative semantic space |
6859802, | Sep 13 1999 | Microsoft Technology Licensing, LLC | Image retrieval based on relevance feedback |
6862710, | Mar 23 1999 | FIVER LLC | Internet navigation using soft hyperlinks |
6876997, | May 22 2000 | R2 SOLUTIONS LLC | Method and apparatus for indentifying related searches in a database search system |
6931383, | May 04 1999 | AT&T Corp. | Methods and apparatus for communicating information in a supervised learning system |
6993516, | Dec 26 2002 | International Business Machines Corporation | Efficient sampling of a relational database |
7051017, | Mar 23 1999 | FIVER LLC | Inverse inference engine for high performance web search |
7082568, | Jun 20 1997 | Fujitsu Limited | Interactive data analysis support apparatus and media on which is recorded an interactive data analysis support program |
7113910, | Feb 18 2000 | Nuance Communications, Inc | Document expansion in speech retrieval |
7146355, | Mar 15 2001 | LinkedIn Corporation | Method and structure for efficiently retrieving artifacts in a fine grained software configuration management repository |
7162468, | Jul 31 1998 | CXENSE ASA | Information retrieval system |
7251665, | May 03 2000 | R2 SOLUTIONS LLC | Determining a known character string equivalent to a query string |
7269598, | Mar 22 2000 | FIVER LLC | Extended functionality for an inverse inference engine based web search |
7283951, | Aug 14 2001 | FIVER LLC | Method and system for enhanced data searching |
7287020, | Jan 12 2001 | Microsoft Technology Licensing, LLC | Sampling for queries |
7305483, | Apr 25 2002 | YAHOO ASSETS LLC | Method for the real-time distribution of streaming data on a network |
7315899, | Nov 09 2001 | R2 SOLUTIONS LLC | System for controlling and enforcing playback restrictions for a media file by splitting the media file into usable and unusable portions for playback |
7325201, | May 18 2000 | Oracle OTC Subsidiary LLC | System and method for manipulating content in a hierarchical data-driven search and navigation system |
7395207, | Feb 18 2000 | Nuance Communications, Inc | Document expansion in speech retrieval |
7398201, | Aug 14 2001 | FIVER LLC | Method and system for enhanced data searching |
7406529, | Feb 09 2001 | R2 SOLUTIONS LLC | System and method for detecting and verifying digitized content over a computer network |
7428528, | Mar 31 2004 | Oracle OTC Subsidiary LLC | Integrated application for manipulating content in a hierarchical data-driven search and navigation system |
7451388, | Sep 08 1999 | Hewlett Packard Enterprise Development LP | Ranking search engine results |
7454509, | Nov 10 1999 | R2 SOLUTIONS LLC | Online playback system with community bias |
7483892, | Apr 24 2002 | KLDiscovery Ontrack, LLC | Method and system for optimally searching a document database using a representative semantic space |
7493340, | Sep 13 1999 | Microsoft Technology Licensing, LLC | Image retrieval based on relevance feedback |
7523085, | Sep 30 2004 | BUZZMETRICS, LTD | Topical sentiments in electronically stored communications |
7526425, | Aug 14 2001 | FIVER LLC | Method and system for extending keyword searching to syntactically and semantically annotated data |
7546316, | May 03 2000 | R2 SOLUTIONS LLC | Determining a known character string equivalent to a query string |
7552385, | May 04 2001 | International Business Machines Coporation | Efficient storage mechanism for representing term occurrence in unstructured text documents |
7567949, | Mar 15 1999 | Microsoft Technology Licensing, LLC | Sampling for database systems |
7567957, | May 18 2000 | Oracle OTC Subsidiary LLC | Hierarchical data-driven search and navigation system and method for information retrieval |
7574513, | Apr 30 2001 | Pandora Media, LLC | Controllable track-skipping |
7587381, | Jan 25 2002 | OUTBRAIN, INC | Method for extracting a compact representation of the topical content of an electronic text |
7596552, | Aug 05 2005 | BuzzMetrics Ltd. | Method and system for extracting web data |
7600017, | Oct 11 2000 | BuzzMetrics, Ltd. | System and method for scoring electronic messages |
7610272, | Nov 29 2004 | SAP SE | Materialized samples for a business warehouse query |
7613686, | Sep 13 1999 | Microsoft Technology Licensing, LLC | Image retrieval based on relevance feedback |
7617184, | May 18 2000 | Oracle OTC Subsidiary LLC | Scalable hierarchical data-driven navigation system and method for information retrieval |
7617186, | Oct 05 2004 | Adobe Inc | System, method and computer program for successive approximation of query results |
7657555, | May 22 2000 | R2 SOLUTIONS LLC | Method and apparatus for identifying related searches in a database search system |
7660783, | Sep 27 2006 | CITIBANK, N A | System and method of ad-hoc analysis of data |
7672873, | Sep 10 2003 | Pandora Media, LLC | Music purchasing and playing system and method |
7707221, | Apr 03 2002 | R2 SOLUTIONS LLC | Associating and linking compact disc metadata |
7711838, | Nov 10 1999 | Pandora Media, LLC | Internet radio and broadcast method |
7720852, | May 03 2000 | R2 SOLUTIONS LLC | Information retrieval engine |
7725414, | Mar 16 2004 | Buzzmetrics Ltd | Method for developing a classifier for classifying communications |
7761298, | Feb 18 2000 | Nuance Communications, Inc | Document expansion in speech retrieval |
7844483, | Oct 11 2000 | BuzzMetrics, Ltd. | System and method for predicting external events from electronic author activity |
7844484, | Oct 11 2000 | BuzzMetrics, Ltd. | System and method for benchmarking electronic message activity |
7856434, | Nov 12 2007 | Oracle OTC Subsidiary LLC | System and method for filtering rules for manipulating search results in a hierarchical search and navigation system |
7877345, | Sep 30 2004 | BuzzMetrics, Ltd. | Topical sentiments in electronically stored communications |
7912823, | May 18 2000 | Oracle OTC Subsidiary LLC | Hierarchical data-driven navigation system and method for information retrieval |
7953593, | Aug 14 2001 | FIVER LLC | Method and system for extending keyword searching to syntactically and semantically annotated data |
8005724, | May 03 2000 | R2 SOLUTIONS LLC | Relationship discovery engine |
8019752, | Nov 10 2005 | Oracle OTC Subsidiary LLC | System and method for information retrieval from object collections with complex interrelationships |
8041669, | Sep 30 2004 | BuzzMetrics, Ltd. | Topical sentiments in electronically stored communications |
8056019, | Jan 26 2005 | NUIX NORTH AMERICA INC | System and method for providing a dynamic user interface including a plurality of logical layers |
8099417, | Dec 12 2007 | Microsoft Technology Licensing, LLC | Semi-supervised part-of-speech tagging |
8131540, | Aug 14 2001 | FIVER LLC | Method and system for extending keyword searching to syntactically and semantically annotated data |
8155453, | Feb 13 2004 | NUIX NORTH AMERICA INC | System and method for displaying groups of cluster spines |
8255399, | Apr 28 2010 | Microsoft Technology Licensing, LLC | Data classifier |
8271316, | Dec 17 1999 | BUZZMETRICS LTD, AN ISRAEL CORPORATION | Consumer to business data capturing system |
8271333, | Nov 02 2000 | R2 SOLUTIONS LLC | Content-related wallpaper |
8312019, | Feb 13 2004 | NUIX NORTH AMERICA INC | System and method for generating cluster spines |
8347326, | Dec 18 2007 | Nielsen Consumer LLC | Identifying key media events and modeling causal relationships between key events and reported feelings |
8352331, | May 03 2000 | R2 SOLUTIONS LLC | Relationship discovery engine |
8369627, | Feb 13 2004 | NUIX NORTH AMERICA INC | System and method for generating groups of cluster spines for display |
8375021, | Apr 26 2010 | Microsoft Technology Licensing, LLC | Search engine data structure |
8380718, | Aug 31 2001 | NUIX NORTH AMERICA INC | System and method for grouping similar documents |
8380723, | May 21 2010 | Microsoft Technology Licensing, LLC | Query intent in information retrieval |
8396855, | May 28 2010 | International Business Machines Corporation | Identifying communities in an information network |
8402026, | Aug 31 2001 | NUIX NORTH AMERICA INC | System and method for efficiently generating cluster groupings in a multi-dimensional concept space |
8402395, | Jan 26 2005 | NUIX NORTH AMERICA INC | System and method for providing a dynamic user interface for a dense three-dimensional scene with a plurality of compasses |
8515957, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for displaying relationships between electronically stored information to provide classification suggestions via injection |
8515958, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for providing a classification suggestion for concepts |
8520001, | Feb 25 2002 | NUIX NORTH AMERICA INC | System and method for thematically arranging clusters in a visual display |
8572084, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for displaying relationships between electronically stored information to provide classification suggestions via nearest neighbor |
8594996, | Oct 17 2007 | FIVER LLC | NLP-based entity recognition and disambiguation |
8610719, | Aug 31 2001 | NUIX NORTH AMERICA INC | System and method for reorienting a display of clusters |
8612444, | Apr 28 2010 | Microsoft Technology Licensing, LLC | Data classifier |
8612446, | Aug 24 2009 | NUIX NORTH AMERICA INC | System and method for generating a reference set for use during document review |
8626761, | Jul 25 2003 | NUIX NORTH AMERICA INC | System and method for scoring concepts in a document set |
8635223, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for providing a classification suggestion for electronically stored information |
8639044, | Feb 13 2004 | NUIX NORTH AMERICA INC | Computer-implemented system and method for placing cluster groupings into a display |
8645125, | Mar 30 2010 | FIVER LLC | NLP-based systems and methods for providing quotations |
8645372, | Oct 30 2009 | FIVER LLC | Keyword-based search engine results using enhanced query strategies |
8645378, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for displaying relationships between concepts to provide classification suggestions via nearest neighbor |
8650190, | Aug 31 2001 | NUIX NORTH AMERICA INC | Computer-implemented system and method for generating a display of document clusters |
8676802, | Nov 30 2006 | Oracle OTC Subsidiary LLC | Method and system for information retrieval with clustering |
8700604, | Oct 17 2007 | FIVER LLC | NLP-based content recommender |
8700627, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for displaying relationships between concepts to provide classification suggestions via inclusion |
8701048, | Jan 26 2005 | NUIX NORTH AMERICA INC | System and method for providing a user-adjustable display of clusters and text |
8713018, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for displaying relationships between electronically stored information to provide classification suggestions via inclusion |
8725736, | Aug 31 2001 | NUIX NORTH AMERICA INC | Computer-implemented system and method for clustering similar documents |
8725739, | Nov 01 2010 | FIVER LLC | Category-based content recommendation |
8792733, | Feb 13 2004 | NUIX NORTH AMERICA INC | Computer-implemented system and method for organizing cluster groups within a display |
8793715, | Dec 18 2007 | Nielsen Consumer LLC | Identifying key media events and modeling causal relationships between key events and reported feelings |
8838633, | Aug 11 2010 | FIVER LLC | NLP-based sentiment analysis |
8856096, | Nov 16 2005 | FIVER LLC | Extending keyword searching to syntactically and semantically annotated data |
8874727, | May 31 2010 | CITIBANK, N A | Methods, apparatus, and articles of manufacture to rank users in an online social network |
8909647, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for providing classification suggestions using document injection |
8930370, | May 09 2000 | CBS INTERACTIVE INC. | Content aggregation method and apparatus for on-line purchasing system |
8942488, | Feb 13 2004 | NUIX NORTH AMERICA INC | System and method for placing spine groups within a display |
8954469, | Mar 14 2007 | FIVER LLC | Query templates and labeled search tip system, methods, and techniques |
9064008, | Jul 28 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for displaying visual classification suggestions for concepts |
9082232, | Feb 13 2004 | NUIX NORTH AMERICA INC | System and method for displaying cluster spine groups |
9092416, | Mar 30 2010 | FIVER LLC | NLP-based systems and methods for providing quotations |
9116995, | Mar 30 2011 | VCVC III LLC | Cluster-based identification of news stories |
9158855, | Jun 16 2005 | BUZZMETRICS, LTD | Extracting structured data from weblogs |
9165062, | Jul 28 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for visual document classification |
9176642, | Jan 26 2005 | NUIX NORTH AMERICA INC | Computer-implemented system and method for displaying clusters via a dynamic user interface |
9177059, | May 09 2000 | CNET MEDIA, INC | Method and system for determining allied products |
9195399, | Aug 31 2001 | NUIX NORTH AMERICA INC | Computer-implemented system and method for identifying relevant documents for display |
9208221, | Aug 31 2001 | NUIX NORTH AMERICA INC | Computer-implemented system and method for populating clusters of documents |
9208592, | Jan 26 2005 | NUIX NORTH AMERICA INC | Computer-implemented system and method for providing a display of clusters |
9245367, | Feb 13 2004 | NUIX NORTH AMERICA INC | Computer-implemented system and method for building cluster spine groups |
9275344, | Aug 24 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for generating a reference set via seed documents |
9311391, | Dec 30 2008 | TELECOM ITALIA S P A | Method and system of content recommendation |
9336303, | Jul 28 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for providing visual suggestions for cluster classification |
9336496, | Aug 24 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for generating a reference set via clustering |
9342909, | Feb 13 2004 | NUIX NORTH AMERICA INC | Computer-implemented system and method for grafting cluster spines |
9378285, | Nov 16 2005 | FIVER LLC | Extending keyword searching to syntactically and semantically annotated data |
9384573, | Feb 13 2004 | NUIX NORTH AMERICA INC | Computer-implemented system and method for placing groups of document clusters into a display |
9405848, | Sep 15 2010 | VCVC III LLC | Recommending mobile device activities |
9455891, | May 31 2010 | CITIBANK, N A | Methods, apparatus, and articles of manufacture to determine a network efficacy |
9471670, | Oct 17 2007 | FIVER LLC | NLP-based content recommender |
9477751, | Jul 28 2009 | NUIX NORTH AMERICA INC | System and method for displaying relationships between concepts to provide classification suggestions via injection |
9489446, | Aug 24 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for generating a training set for use during document review |
9495779, | Feb 13 2004 | NUIX NORTH AMERICA INC | Computer-implemented system and method for placing groups of cluster spines into a display |
9542483, | Jul 28 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for visually suggesting classification for inclusion-based cluster spines |
9547650, | Jan 24 2000 | BLUEBONNET INTERNET MEDIA SERVICES, LLC | System for sharing and rating streaming media playlists |
9558185, | Jan 10 2012 | UT-Battelle, LLC | Method and system to discover and recommend interesting documents |
9558259, | Aug 31 2001 | NUIX NORTH AMERICA INC | Computer-implemented system and method for generating clusters for placement into a display |
9613004, | Oct 17 2007 | FIVER LLC | NLP-based entity recognition and disambiguation |
9619551, | Aug 31 2001 | NUIX NORTH AMERICA INC | Computer-implemented system and method for generating document groupings for display |
9619909, | Feb 13 2004 | NUIX NORTH AMERICA INC | Computer-implemented system and method for generating and placing cluster groups |
9679049, | Jul 29 2009 | NUIX NORTH AMERICA INC | System and method for providing visual suggestions for document classification via injection |
9710556, | Mar 01 2010 | VCVC III LLC | Content recommendation based on collections of entities |
9779095, | Jan 24 2000 | BLUEBONNET INTERNET MEDIA SERVICES, LLC | User input-based play-list generation and playback system |
9830378, | Jun 26 2009 | Quantifind, Inc. | System and methods for units-based numeric information retrieval |
9858693, | Feb 13 2004 | NUIX NORTH AMERICA INC | System and method for placing candidate spines into a display with the aid of a digital computer |
9898526, | Jul 28 2009 | NUIX NORTH AMERICA INC | Computer-implemented system and method for inclusion-based electronically stored information item cluster visual representation |
9934313, | Mar 14 2007 | FIVER LLC | Query templates and labeled search tip system, methods and techniques |
9984484, | Feb 13 2004 | NUIX NORTH AMERICA INC | Computer-implemented system and method for cluster spine group arrangement |
D974193, | Jul 27 2020 | Masimo Corporation | Wearable temperature measurement device |
D980091, | Jul 27 2020 | Masimo Corporation | Wearable temperature measurement device |
ER1649, | |||
ER1714, | |||
ER1777, | |||
ER2016, | |||
ER2198, | |||
ER31, | |||
ER3807, | |||
ER4099, | |||
ER4355, | |||
ER5109, | |||
ER5816, | |||
ER5918, | |||
ER612, | |||
ER6654, | |||
ER6678, | |||
ER7053, | |||
ER8765, | |||
ER9655, |
Patent | Priority | Assignee | Title |
4831550, | Mar 27 1986 | International Business Machines Corporation | Apparatus and method for estimating, from sparse data, the probability that a particular one of a set of events is the next event in a string of events |
5212765, | Aug 03 1990 | ROCKWELL AUTOMATION TECHNOLOGIES, INC | On-line training neural network system for process control |
5408586, | Aug 03 1990 | ROCKWELL AUTOMATION TECHNOLOGIES, INC | Historical database training method for neural networks |
5488725, | Oct 08 1991 | WEST SERVICES INC | System of document representation retrieval by successive iterated probability sampling |
5586197, | Sep 02 1993 | Canon Kabushiki Kaisha | Image searching method and apparatus thereof using color information of an input image |
5675786, | Jan 31 1994 | Accessing data held in large databases | |
5696964, | Apr 16 1996 | NEC Corporation | Multimedia database retrieval system which maintains a posterior probability distribution that each item in the database is a target of a search |
5713016, | Sep 05 1995 | HEWLETT-PACKARD DEVELOPMENT COMPANY, L P | Process and system for determining relevance |
WO9323818, |
Executed on | Assignor | Assignee | Conveyance | Frame | Reel | Doc |
Jan 02 1997 | AT&T Corp | (assignment on the face of the patent) | / | |||
Jan 03 1997 | COHEN, EDITH | AT&T Corp | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 008851 | /0955 | |
Jan 06 1997 | LEWIS, DAVID DOLAN | AT&T Corp | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 008851 | /0955 |
Date | Maintenance Fee Events |
Dec 30 2002 | M1551: Payment of Maintenance Fee, 4th Year, Large Entity. |
Feb 20 2007 | M1552: Payment of Maintenance Fee, 8th Year, Large Entity. |
Feb 18 2011 | M1553: Payment of Maintenance Fee, 12th Year, Large Entity. |
Date | Maintenance Schedule |
Sep 07 2002 | 4 years fee payment window open |
Mar 07 2003 | 6 months grace period start (w surcharge) |
Sep 07 2003 | patent expiry (for year 4) |
Sep 07 2005 | 2 years to revive unintentionally abandoned end. (for year 4) |
Sep 07 2006 | 8 years fee payment window open |
Mar 07 2007 | 6 months grace period start (w surcharge) |
Sep 07 2007 | patent expiry (for year 8) |
Sep 07 2009 | 2 years to revive unintentionally abandoned end. (for year 8) |
Sep 07 2010 | 12 years fee payment window open |
Mar 07 2011 | 6 months grace period start (w surcharge) |
Sep 07 2011 | patent expiry (for year 12) |
Sep 07 2013 | 2 years to revive unintentionally abandoned end. (for year 12) |