EP2030131A1 - Data mining using an index tree created by recursive projection of data points on random lines - Google Patents

Data mining using an index tree created by recursive projection of data points on random lines

Info

Publication number
EP2030131A1
EP2030131A1 EP07736624A EP07736624A EP2030131A1 EP 2030131 A1 EP2030131 A1 EP 2030131A1 EP 07736624 A EP07736624 A EP 07736624A EP 07736624 A EP07736624 A EP 07736624A EP 2030131 A1 EP2030131 A1 EP 2030131A1
Authority
EP
European Patent Office
Prior art keywords
data
tree
partition
line
signatures
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Ceased
Application number
EP07736624A
Other languages
German (de)
French (fr)
Inventor
Fridrik Heidar Asmundsson
Herwig Lejsek
Bjorn Thor Jonsson
Laurent Amsaleg
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Haskolinn I Reykjavik
Original Assignee
Haskolinn I Reykjavik
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Haskolinn I Reykjavik filed Critical Haskolinn I Reykjavik
Publication of EP2030131A1 publication Critical patent/EP2030131A1/en
Ceased legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/22Indexing; Data structures therefor; Storage structures
    • G06F16/2228Indexing structures
    • G06F16/2246Trees, e.g. B+trees

Definitions

  • This invention relates to efficiently performing an approximate indexing and similarity search in large collections of high-dimensional data signatures.
  • LSH Locality Sensitive Hashing
  • NV-tree Nearest Vector tree
  • the indexing technique is based on a combination of projections to lines through the high-dimensional space and repeated segmentation of those lines.
  • the resulting index structure is stored on a data store in a manner which allows for extremely efficient search, requiring only one data store access per query data signature.
  • the present invention is in contrast to the prior art of the PvS index capable of handling any distance metric, as long as the projection preserves some distance information. Therefore, the drawback of Euclidean distance being the only distance measure is eliminated. Furthermore, the present invention provides methods for searching data of any size in a constant time. Moreover, in the prior art, the search quality of the PvS-index was highly dependent on the random line generated at the beginning of the index creation. The NV -tree greatly improves the search quality by selecting the best line, given a set of data signatures. In the present context the best line is the line which has the largest projection variance.
  • the NV-tree only sorts the projected values when they are written to the data file, making the creation process considerably more efficient than the PvS-index.
  • the PvS-index had to use many B+ -trees, an inefficient disk-storage structure was created which led to a significant enlargement of the index and a significant startup cost.
  • the NV -tree can store just the data signature identifiers, and optionally, the location information on the line for every n-th point, which results in a very compact data structure.
  • the NV-Tree supports also non-overlapping partitioning while the PvS- Index strictly requires such overlaps between the borders of partitions.
  • the NV -tree is a general indexing technique for high-dimensional nearest neighbor queries. Since the PvS-index stores only the B+ -trees needed for the OMEDRANK in its index, it is not a general data structure.
  • LSH Locality Sensitive Hashing
  • the NV -tree is a tree structure while LSH is a flat hash based structure. LSH projects the data signatures onto a set of random lines and segments each individual line in equal-length buckets. In contrast to the NV- Tree, all projection steps are performed right at the start of the creation/search/update procedure, similar as in the PvS-index.
  • LSH is an ⁇ -Approximate Nearest Neighbor Search
  • the width of those buckets (also referred to as radius) is dependent on the chosen ⁇ -threshold.
  • the data signature is then assigned an identifier for each line according to the bucket it had been projected to.
  • these identifiers are concatenated to a hash keyword (with the word's size equivalent to the number of lines), which identifies the cluster on the data store where a point is stored.
  • NV-Tree always guarantees constant access time to the data store
  • LSH suffers from the unpredictability of its hash bucket sizes.
  • Individual Hash buckets may be empty or may contain many thousands of data signatures, which often exceeds the capacity of a single data store access.
  • LSH suffers from non-existing rankings inside its hash buckets. Therefore its authors suggest loading all actual data signatures referenced in a hash bucket from the data store and calculating the actual distances between them and the query point.
  • the size of an entry in an LSH hash table on the data store consists of at least one identifier and a control hash value per data signature, while the NV-Tree stores just the sorted identifiers inside a leaf node. In order to lookup those identifiers we insert a key value for every 8 th - 64 th identifier in the leaf node. This enables a leaf node to store up to 100% more identifiers.
  • a non-overlapping NV-Tree needs therefore just about half the space on a data store than a LSH hash table, while an overlapping NV-Tree provides significantly better accuracy of the results, but requires a multiple of that space because its storage requirement is inherently exponential.
  • the present invention relates to a method for creating a search tree for data mining with constant search time.
  • the method comprising the steps of: generating a set of isotropic random lines and store said lines in a line pool, projecting all the data signatures onto a projection line from said pool, building a tree node storing information characterizing said line, segment said line into two or more line partitions, segment further said two or more line partitions.
  • the first steps of the method are repeated for each partition until a stop value is reached and then data signatures of current partition are projected to a line. Thereafter the data signatures are sorted and- stored.
  • the present invention relates to a method for inserting data signatures into a search tree.
  • the method comprising the steps of: traversing said search tree, projecting data signatures representing said data to be inserted onto a projection line and selecting one or more path based on a projection value obtained projection step.
  • the first three steps are repeated until said data signature is projected to a value belonging to a partition stored in said data store.
  • the next step involves searching for location in pre-sorted data signatures of said partition and finally the data signature is stored.
  • the present invention relates to a method for storing data from a search tree.
  • the method comprising the steps of: selecting a projection line, projecting data signatures representing the data to be searched for onto the projection line and building a tree node storing information characterizing the partition and the line, segment the line into two or more partitions. Next the partitions are segmented and previous steps for each partition are repeated until a stop value is reached. Then data signatures of current partition are projected to a line, data signatures are sorted and finally, the data signatures are stored.
  • the present invention relates to a method for deleting data signature from a search tree.
  • the method comprising the steps of: traversing said search tree, projecting data signatures and representing said data signatures to be deleted, onto a projection line. Next, one or more path is selected based on a projection value obtained in the second step of the method and the first steps are repeated until said data signature is projected to a value belonging to a partition stored in said data store. Then appropriate location among pre-sorted data signatures is located in said partition and the data signature is deleted.
  • the present invention relates to a method for data mining a search tree with constant search time.
  • the method comprising the steps of: traversing a search tree to a leave, retrieving one or more data signature from said leave and reading data pointed to by said data signature. Next one or more value is/are located in said data, one or more data data signatures is referenced and the n-nearest data signatures neighbors are retrieved. Finally the search is terminated.
  • the present invention relates to a computer program or suite of computer programs is provided, so arranged such that when executed on a processor said program of suite of programs cause(s) said processor to perform the methods of the present invention. Furthermore a computer readable data storage medium is provided for storing the computer program or at least one of the suite of computer programs of claim mentioned above.
  • Fig 2. shows a partition containing a fixed number of data signatures in its sub partitions.
  • Fig 3. shows a partition containing a variable number of data signatures in its sub partitions.
  • Fig 4. shows a flow-diagram illustrating the steps for creating a NV-Tree from a collection of data signatures
  • Fig 5. shows a flow-diagram illustrating the steps for searching a query data signature in an existing NV-Tree
  • Fig 6. shows a flow-diagram illustrating the steps for inserting a query data signature in an existing NV-Tree
  • Fig 7. shows a flow-diagram illustrating the steps for deleting a query data signature from an existing NV-Tree
  • Data stores in computers are hierarchically organized (Register - Ll cache - L2 cache
  • Constant time access to a secondary data store may (in case of a hard disk or an optical disk) have slightly different access time depending on where the data is located, still it is regarded as constant access time in the present context.
  • NV-tree refers to the nearest vector tree data structure used in the implementation of the present invention. • NV-tree leaf node:
  • An IW-Tree leaf node refers to an array of data signature identifiers stored on a data store in a way • that the whole leaf node can be fetched within a single access to the data store • that given a query point q and a line I there exists a way to retrieve a ranking of the identifiers stored in the leaf node.
  • a leaf node may furthermore contain key values associated with every data signature, or just a small fraction of the data signatures.
  • leaf node might also contain further projection and partitioning steps in order to achieve smaller result sets with stronger rankings.
  • the Load Factor of an NV-Tree leaf node is defined by the number of actual entries in the leaf node divided through the number of possible entries that fit in an NV-Tree leaf node. For a good insertion performance it is recommended that the leaf nodes are not fully loaded during the creation step.
  • NV-Tree leaf nodes Unlike Local Sensitive Hashing which allows empty buckets, NV-Tree leaf nodes must contain a minimum number of entries (filling ratio).
  • RAM any primary (RAM) or secondary memory such as hard drives, tapes, optical disks, flash-memory drives and any other secondary storage media used in the computer industry.
  • Lp distance any primary (RAM) or secondary memory such as hard drives, tapes, optical disks, flash-memory drives and any other secondary storage media used in the computer industry.
  • a projection f: Sn x Sn — > R refers to a function that transforms an n-dimensional vector into a real number. Sn refers thereby to any n-dimensional set a metric d: Sn x Sn — > R is defined and where R specifies the set of real numbers.
  • a projection line is a n-dimensional vector I e S" . This vector is always used as the second parameter in a projection f: S" x I — > R.
  • NMS Nearest Neighbor Search
  • proximity search is a numerical optimization problem for finding closest points in multidimensional metric spaces. The problem is: given a set S of points in d- dimensional space V and a query point q e V, find the closest point in S to q as defined by the distance in the metric space. When talking about k-nearest neighbors we refer to the k closest points to a query Point q.
  • a metric space is a set where a notion of distance between elements of the set is defined.
  • ⁇ -Approximate Nearest Neighbor Search is an approximation to the general nearest neighbor search problem. The problem is: given a set S of points in d-dimensional space V and a query point q e V, find all the points in S for which the distance to q is smaller than a fixed ⁇ .
  • Contrast Filtered Nearest Neighbor Search is another approximation to the general nearest neighbour search problem. The problem is: given a set S of points in d- dimensional space V and a query point q e V, return a very small or even empty set of points in S for which the distance to q is at least a factor c, with c > 1, smaller than almost all other points in S,
  • Scale-invariant feature transform is a computer vision algorithm for extracting distinctive features from images, to be used in algorithms for tasks like matching different views of an object or scene (e.g. for stereo vision) and object recognition. This algorithm is described in the US 6711293 patent application.
  • a large set of isotropic random lines is generated and kept in a line pool.
  • all data signatures are considered to be part of a single temporary partition.
  • Data signatures belonging to the partition are first projected onto a single projection line through the high-dimensional space. For best retrieval quality the line with the largest projection variance is chosen from the line pool.
  • the projected values are then partitioned into disjoint sub-partitions based on their position on the projection line.
  • sub-partitions are created for redundant coverage of partition borders. These overlapping partitions may cover just a small part exactly around the partition borders or may grow to fully adjoining overlapping partitions. Strategies for partitioning are described in detail later in the text.
  • This process of projecting and partitioning is repeated for all the new sub-partitions which are of a smaller cardinality using a new projection line at each level. It can stop at any time as soon as the number of data signatures in a sub-partition reaches a specified lower limit which is less than or equal to one access in the data store. When a branch stops, the following steps are performed:
  • the line used for projecting this sub-partition is stored in the parent node.
  • a leaf partition is appended to the data file, containing the data signature identifiers of the sub-partition ordered by their rank along the projection line of the leaf node.
  • an NV-tree consists of: a) a hierarchy of small inner nodes, which are kept in memory during query processing and guide the data signature search to the appropriate leaf node; and b) leaf nodes, which are stored on a data store and contain the references (data signature identifiers) to the actual data signatures.
  • the query data signature first traverses the intermediate nodes of the NV-tree. At each level of the tree, the query data signature is projected to the projection line associated with the current node.
  • the search is directed to the sub-partition with center-point closest to the projection of the query data signature, otherwise it follows into the partition the projection is assigned to. This process of projection and choosing the right sub-partition is repeated until the search reaches a leaf partition.
  • the leaf partition is then read from the data store and the query data signature is projected onto the projection line of the leaf partition. Then the search returns the data signature identifiers which are closest to that projection.
  • the NV-tree guarantees query processing time of one data store read regardless of the size of the data signature collection. Larger collections need to do more projections and therefore deeper NV-trees, but still requiring just a single access to the data store.
  • the cost of the query processing consists of adding these 3 factors:
  • the NV-Tree is composed of a hierarchy of small intermediate nodes that eventually point to much larger leaf nodes.
  • Each intermediate node contains the following four arrays: • Child: This array points to the child nodes of the intermediate node.
  • the child nodes may in turn be intermediate nodes or leaf nodes.
  • Projection ⁇ ne This array stores a pointer to the description of the projection line of each sub-partition.
  • PartitionBorder This array keeps track of the borders of each partition (including the overlapping partitions if applicable).
  • SearchBorder (optionally): This array keeps track of the half-way values of projections between the boundaries of adjacent partitions. In case of overlapping partitions these values are used to direct the search to the sub-partition with center-point closest to the projection of the query data signature.
  • leaf nodes are stored on a large data store and each leaf node is at most the size of a single data store read.
  • the leaf nodes on the data store contain an array of data signature identifiers sorted by their projected value.
  • a partitioning strategy is likewise needed at every level of the NV-tree.
  • the Balanced partition strategy partitions data based on cardinality. Therefore, each subpartition gets the same number of data signatures, and eventually all leaf partitions are of the same size. Although node fan-out may vary from one level to the other, the NV-tree becomes balanced as each leaf node is at the same height in the tree.
  • the Unbalanced partitioning strategy uses distances instead of cardinalities. In this case, subpartitions are created such that the absolute distance between their boundaries is equal. All the data signatures in each interval belong to the associated sub-partition. With this strategy the projections leads to a significant variation in the cardinalities of sub-partitions.
  • the standard deviation s ⁇ j and mean m of the projections along the projection line are calculated. Then a parameter a is used to determine the partition borders as ..., m - 2 ⁇ s ⁇ i, m - ⁇ sa, m, m + ⁇ s d , m + 2 ⁇ Sd, ...
  • Both strategies can be partitioned into up to 100 sub-partitions on each line, which tends to produce shallow and wide NV-Trees, while partitioning in very few (2 - 10) partitions per line yields deep and narrow trees. Furthermore both strategies can flexibly interleave each other, talking thereby of a hybrid NV- Tree. Overlapping is an additional feature that may be applied flexibly for any node and for both partitioning strategies. It creates additional partitions covering the area around the partition borders.
  • Insertion and Deletion Inserting or deleting a data signature from the NV-tree is performed according to the following process:
  • the merge step might refrain from re-indexing this whole large subtree, but instead distributing the remaining signatures in that leaf node among the children of a neighboring partition.
  • a sample NV-Tree. 101 shows the inner structure of the tree, while 102 refers to the layout on the data store.
  • 103 shows a sample NV-Tree inner node containing a total of four storage fields, three of them are mandatory.
  • overlapping refers to the PartitionBorder-Array and 105 to Search Border-Array keeping track of the half-way values of projections for searching in overlapping NV-Trees.
  • 105 combines the functionionality of the PartitionBorder and the SearchBorder-Array, because PartitionBorders are also used for guiding the search.
  • Child nodes can either be another NV-Tree inner node as 103 or a NV-Tree leaf node on the data store 108.
  • FIG. 2 showing a balanced partitioning strategy.
  • the data signatures projected onto line 202 are partitioned into partitions 201 of equal cardinality (expressed by the same height of the partitions 201). Since the projected data signatures on the line are expected to be normal distributed the absolute width of a partition on the line is much larger at the extremes. Additionally to the base partitions in 201, overlapping partitions 203 might be added.
  • FIG. 3 showing an unbalanced partitioning strategy.
  • the data signatures projected onto line 302 are partitioned into partitions 301 of equal width 304 on the line.
  • the width along the line is best to be determined by a fixed multiple of the standard deviation 304, partitioning starting from the median 305.
  • the number of data signatures inside the individual partitions 301 may vary significantly in size, since the projected data signatures are expected to be normal distributed. Also in this case overlapping partitions 303 may be added.
  • FIG. 4 showing the steps for creating a NV-Tree from a collection of data signatures 401. The process starts by initializing data structures that keep track of the current path down the NV-tree 402 during the creation process.
  • the variable h denotes the current height
  • pos[h] denotes the current partition at height h
  • nrPart[h] denotes the number of partitions at height h.
  • the data signatures in partition pos[h] at height h are projected to a set of lines 403.
  • the line which distributes the projected data best is then selected 404.
  • h h+l
  • pos[h] 0
  • nrPart[h] #Number of Partitions and step back to 403.
  • n is the root node of the NV-tree 502.
  • c is a leaf node. This is done by selecting line I associated with the current node n and projecting q to line I to get the projected value v.
  • v we can find a child c in which is closest to v.
  • node c is a leaf node, it is loaded from the data store 506 and the ranked nearest neighbor list is retrieved from c 507, ending the search 508.
  • Fig. 6 showing the steps for inserting into a NV-tree a query point q 601.
  • the process involves first finding all leaf nodes in which the data signature will be inserted into 602. in case of overlapping segments there can be several. In case of non-overlapping segments, a point q is always inserted into just one leaf node 602. Then, for each leaf node c 603 we load c from data store 604. If c has room for another identifier 605, then we project q to the line associated with c 606 to get the projected value v and insert the identifier 607 of data signature q into c at the position indicated by v. The leaf node c is then updated and saved to the data store 608.
  • Fig. 7 showing the steps for deleting data signature q from the NV-tree 701.
  • the process involves first finding all leaf nodes containing q 702. In case of overlapping segments they can be many. In case of non-overlapping segments, only a single leaf node contains q 702. Then, for each leaf node c 703 we load c from data store and remove the identifier of q from the c 704. If c fulfills the minimum load factor 705, then c is updated and saved to data store 706. If c was the last leaf node 707 found in 702, then we end the deletion 708, otherwise we step back to 703.
  • ⁇ node root of the NV -tree
  • Partition res load partition p from data store
  • Node root of the NV -tree
  • the nearest neighbor search capability of the NV -tree has been compared to its closest competitors: Locality Sensitive Hashing and the PvS-Index. High emphasis was laid on a fair choice of the parameters, the factor a of the NV-Tree versus radius and word size of LSH.
  • SIFT Scale Invariant Feature Transform
  • the contrast ratio is defined by d(ni 00 , q)/d(ni, q) > 1.8, where nioo refers to the hundredth nearest neighbor of an exact nearest neighbor search as retrieved by a linear scan. Evaluating this definition on the 500 000 query data signatures a total of 248,212 data signatures surpass the contrast filter.
  • the overlapping NV-Tree performs best in terms of search time and receives still acceptable recall performance.
  • Major drawback is the huge demand on disk space. This can be slightly reduced by using the whole bandwidth of a single disk access (32 4kb-pages instead of 6 4kb-pages for the given experimental setup) and avoiding one level of overlapping.
  • the leaf node was structured by itself as a small tree containing another two levels of non-overlapping projections and finally a sorted array of identifiers, where up to 4 such arrays were touched during the aggregation.
  • Non- overlapping IW-Trees do not deliver as good result quality; therefore it needs an aggregation of at least 3 trees to get acceptable recall.
  • LSH needs at least 12 hash tables , which cause at least 12 (one per hash table and possibly more) accesses to the data store.
  • the NV -tree is a general data structure for high dimensional nearest neighbor search. It supports any kind of data dimensionality and multiple distance measures, and is applicable for at least the following applications:

Abstract

The present invention relates to a method computer program product for datamining with constant search time, the method and computer program product comprises the steps of: traversing a search tree to a leave, retrieving a one or more data store identifier from said leave, read data pointed to by said data store identifier, locating one or more value in said data, referencing one or more data descriptor, retrieve the n-nearest data descriptor neighbors, terminate said search.

Description

DATA MINING USING AN INDEX TREE CREATED BY RECURSIVE PROJECTION OF DATA POINTS ON RANDOM LINES
Technical Field
This invention relates to efficiently performing an approximate indexing and similarity search in large collections of high-dimensional data signatures.
Background Art
While there are many prior proposals for indexing high-dimensional data (for a survey, see H. Samet, Foundations of Multidimensional and Metric Data Structures, Morgan Kaufmann, 2006), they have all been shown to suffer from the so-called dimensionality curse (see R. Bellmann: Adaptive Control Processes: A Guided Tour. Princeton Univ. Press (1961)), which means that when the dimensionality of the data goes beyond a certain limit, all search and indexing methods aiming exact answers to the problem have shown to perform slower than a sequential scan of the data signature collection. As a result none of these approaches has been shown to be applicable to large data signature sets.
One paradigm for attacking the dimensionality curse problem is to project high-dimensional data signatures to random lines, which was introduced by Kleinberg (see Two Algorithms for Nearest-Neighbor Search in High Dimensions, Jon M. Kleinberg, 1997) and subsequently used in many other high-dimensional indexing techniques. Such projections have two main benefits. First, in some cases, they can alleviate data distribution problems. Second, they allow for a clever dimensionality reduction, by projecting to fewer lines than there are dimensions in the data.
Fagin et.al. presented in their paper, "Efficient similarity search and classification via rank aggregation (Proceedings of the ACM SIGMOD, San Diego, CA, 2003) " an algorithm called (O)MEDRANK for projecting the data signatures to a single random line per index and storing the identifiers organized in a B+ -tree on a data store. This algorithm is described in the US 20040249831 patent application.
Since the OMEDRANK algorithm needs B+ -trees for its query retrieval, Lejsek et.al in their paper, "A case-study of scoring schemes for the PvS-index", in the proceedings of CVDB, Baltimore, MD, 2005 proposed an enhanced version of the OMEDRANK algorithm called the PvS-index, which redundantly saves these B+ -trees to disk for fast lookup. The PvS-index suffers, however, from its static nature, which does not support updates as soon as nodes need to be split. Further drawbacks are the limited number of random lines (one line per hierarchy), the insufficient disk storage by using multiple B+ -trees and its tight tie to the OMEDRANK algorithm and the Euclidean distance.
Another strategy in high-dimensional indexing follows the idea of Locality Sensitive Hashing (LSH), published by Indyk et al. in "Similarity search in high dimensions via hashing", in the Proceedings of VLDB, Edinburgh, 1999 and "Locality-sensitive hashing using stable distributions", MIT Press, 2006. LSH is not based on a sorted tree structure, but on hashing the data signatures into buckets. The hash function is constructed by projecting each data signature onto a small set of random lines with fixed cardinality. Each of the projections is categorized into buckets and each of these buckets is assigned an identifier. By concatenating all the identifiers of the projections a hash value is constructed and all data signatures resulting the same hash value are stored together on the data store.
JoIy et. al have shown in "Content-Based Copy Detection using Distortion-Based Probabilistic Similarity Search" in IEEE Transactions on Multimedia, 2007 a video-retrieval system based on Hilbert-Space-Filling-Curves for fast high-dimensional retrieval. This method has, however, tuned especially for this specific and rather low-dimensional application, which still needs a sequential scan at the end of the query processing.
Disclosure of the Invention The present invention, in the present context called the NV-tree (Nearest Vector tree) is a data structure designed to provide efficient approximate nearest neighbor search in very large high- dimensional collections. Specifically, the indexing technique is based on a combination of projections to lines through the high-dimensional space and repeated segmentation of those lines. The resulting index structure is stored on a data store in a manner which allows for extremely efficient search, requiring only one data store access per query data signature.
In essence, it transforms costly nearest neighbor searches in the high-dimensional space into efficient uni-dimensional accesses using a combination of projections of data signatures to lines and partitioning of the projected space.
By repeating the process of projecting and partitioning, data is eventually separated into small partitions or "clusters" which can be easily fetched from the data store with a single data read operation, and which are highly likely to contain all the close neighbors in the collection. In a very high-dimensional space, such "clusters" may overlap. The present invention is in contrast to the prior art of the PvS index capable of handling any distance metric, as long as the projection preserves some distance information. Therefore, the drawback of Euclidean distance being the only distance measure is eliminated. Furthermore, the present invention provides methods for searching data of any size in a constant time. Moreover, in the prior art, the search quality of the PvS-index was highly dependent on the random line generated at the beginning of the index creation. The NV -tree greatly improves the search quality by selecting the best line, given a set of data signatures. In the present context the best line is the line which has the largest projection variance.
Also, while the PvS-index needs to sort the projected values after each partitioning step, the NV-tree only sorts the projected values when they are written to the data file, making the creation process considerably more efficient than the PvS-index. In addition, since the PvS-index had to use many B+ -trees, an inefficient disk-storage structure was created which led to a significant enlargement of the index and a significant startup cost. In fact the NV -tree can store just the data signature identifiers, and optionally, the location information on the line for every n-th point, which results in a very compact data structure. Furthermore, the NV-Tree supports also non-overlapping partitioning while the PvS- Index strictly requires such overlaps between the borders of partitions.
While the PvS-index is built on top of the OMEDRANK algorithm, the NV -tree is a general indexing technique for high-dimensional nearest neighbor queries. Since the PvS-index stores only the B+ -trees needed for the OMEDRANK in its index, it is not a general data structure. Compared to prior art on Locality Sensitive Hashing (LSH), the NV -tree is a tree structure while LSH is a flat hash based structure. LSH projects the data signatures onto a set of random lines and segments each individual line in equal-length buckets. In contrast to the NV- Tree, all projection steps are performed right at the start of the creation/search/update procedure, similar as in the PvS-index. Since LSH is an ε-Approximate Nearest Neighbor Search, the width of those buckets (also referred to as radius) is dependent on the chosen ε-threshold. The data signature is then assigned an identifier for each line according to the bucket it had been projected to. In a next step these identifiers are concatenated to a hash keyword (with the word's size equivalent to the number of lines), which identifies the cluster on the data store where a point is stored. While the NV-Tree always guarantees constant access time to the data store, LSH suffers from the unpredictability of its hash bucket sizes. Individual Hash buckets may be empty or may contain many thousands of data signatures, which often exceeds the capacity of a single data store access. Furthermore, LSH suffers from non-existing rankings inside its hash buckets. Therefore its authors suggest loading all actual data signatures referenced in a hash bucket from the data store and calculating the actual distances between them and the query point.
For large collections, this leads to additional O(bucket size) random accesses to the data store. In contrast, the NV-Tree does not need to calculate the distances as it is a purely a rank based solution.
The size of an entry in an LSH hash table on the data store consists of at least one identifier and a control hash value per data signature, while the NV-Tree stores just the sorted identifiers inside a leaf node. In order to lookup those identifiers we insert a key value for every 8th - 64th identifier in the leaf node. This enables a leaf node to store up to 100% more identifiers. A non-overlapping NV-Tree needs therefore just about half the space on a data store than a LSH hash table, while an overlapping NV-Tree provides significantly better accuracy of the results, but requires a multiple of that space because its storage requirement is inherently exponential.
In a first aspect the present invention relates to a method for creating a search tree for data mining with constant search time. The method comprising the steps of: generating a set of isotropic random lines and store said lines in a line pool, projecting all the data signatures onto a projection line from said pool, building a tree node storing information characterizing said line, segment said line into two or more line partitions, segment further said two or more line partitions. The first steps of the method are repeated for each partition until a stop value is reached and then data signatures of current partition are projected to a line. Thereafter the data signatures are sorted and- stored.
In another aspect the present invention relates to a method for inserting data signatures into a search tree. The method comprising the steps of: traversing said search tree, projecting data signatures representing said data to be inserted onto a projection line and selecting one or more path based on a projection value obtained projection step. The first three steps are repeated until said data signature is projected to a value belonging to a partition stored in said data store. The next step involves searching for location in pre-sorted data signatures of said partition and finally the data signature is stored.
In another aspect the present invention relates to a method for storing data from a search tree. The method comprising the steps of: selecting a projection line, projecting data signatures representing the data to be searched for onto the projection line and building a tree node storing information characterizing the partition and the line, segment the line into two or more partitions. Next the partitions are segmented and previous steps for each partition are repeated until a stop value is reached. Then data signatures of current partition are projected to a line, data signatures are sorted and finally, the data signatures are stored.
In another aspect the present invention relates to a method for deleting data signature from a search tree. The method comprising the steps of: traversing said search tree, projecting data signatures and representing said data signatures to be deleted, onto a projection line. Next, one or more path is selected based on a projection value obtained in the second step of the method and the first steps are repeated until said data signature is projected to a value belonging to a partition stored in said data store. Then appropriate location among pre-sorted data signatures is located in said partition and the data signature is deleted.
In another aspect the present invention relates to a method for data mining a search tree with constant search time. The method comprising the steps of: traversing a search tree to a leave, retrieving one or more data signature from said leave and reading data pointed to by said data signature. Next one or more value is/are located in said data, one or more data data signatures is referenced and the n-nearest data signatures neighbors are retrieved. Finally the search is terminated.
In another aspect the present invention relates to a computer program or suite of computer programs is provided, so arranged such that when executed on a processor said program of suite of programs cause(s) said processor to perform the methods of the present invention. Furthermore a computer readable data storage medium is provided for storing the computer program or at least one of the suite of computer programs of claim mentioned above.
Brief Description of Drawings Fig 1. shows the NV-Tree data-structure and its data store
Fig 2. shows a partition containing a fixed number of data signatures in its sub partitions. Fig 3. shows a partition containing a variable number of data signatures in its sub partitions.
Fig 4. shows a flow-diagram illustrating the steps for creating a NV-Tree from a collection of data signatures Fig 5. shows a flow-diagram illustrating the steps for searching a query data signature in an existing NV-Tree
Fig 6. shows a flow-diagram illustrating the steps for inserting a query data signature in an existing NV-Tree
Fig 7. shows a flow-diagram illustrating the steps for deleting a query data signature from an existing NV-Tree
Detailed Description
In the following section the NV data structure, tree creation, insertion, deletion and search is described in a detail. In order to clarify the technical jargon commonly used in the field of the invention a definition of terms is provided.
Definitions of terms used in the present context
• Constant time:
Refers to the time required to retrieve the same amount of data from a data store. Data stores in computers are hierarchically organized (Register - Ll cache - L2 cache
- L3 cache - main memory - secondary storage) and one access to such a data store takes a specified constant amount of time and retrieves a constant amount of locality close data (bandwidth).
Constant time access to a secondary data store may (in case of a hard disk or an optical disk) have slightly different access time depending on where the data is located, still it is regarded as constant access time in the present context.
• NV-tree:
NV-tree refers to the nearest vector tree data structure used in the implementation of the present invention. • NV-tree leaf node:
An IW-Tree leaf node refers to an array of data signature identifiers stored on a data store in a way • that the whole leaf node can be fetched within a single access to the data store • that given a query point q and a line I there exists a way to retrieve a ranking of the identifiers stored in the leaf node.
In order to position the cursor for the rank aggregation more accurately a leaf node may furthermore contain key values associated with every data signature, or just a small fraction of the data signatures.
For data stores with high bandwidth a leaf node might also contain further projection and partitioning steps in order to achieve smaller result sets with stronger rankings.
• Load Factor:
The Load Factor of an NV-Tree leaf node is defined by the number of actual entries in the leaf node divided through the number of possible entries that fit in an NV-Tree leaf node. For a good insertion performance it is recommended that the leaf nodes are not fully loaded during the creation step.
• Minimum Load Factor:
Unlike Local Sensitive Hashing which allows empty buckets, NV-Tree leaf nodes must contain a minimum number of entries (filling ratio).
• Data Signature:
Refers to the data descriptor describing the data to be searched for in the data mine.
Data Signature Identifier:
Refers to an index number which clearly identifies a single data signature. Inside the NV-Tree leaf nodes are typically only those identifiers stores, since the actual signature data is not needed for the retrieval. This makes data store requirements of the NV-Tree independent from the actual dimensionality of the data signatures.
• Data mine: Database of any size.
• Data Store:
Refers to any primary (RAM) or secondary memory such as hard drives, tapes, optical disks, flash-memory drives and any other secondary storage media used in the computer industry. • Lp distance:
For a point (X1, x%, ...,xn) and a point Cy1, y2, .../Kn)/ the Minkowski distance of order p (p-norm distance) is defined as:
• Projection: A projection f: Sn x Sn — > R refers to a function that transforms an n-dimensional vector into a real number. Sn refers thereby to any n-dimensional set a metric d: Sn x Sn — > R is defined and where R specifies the set of real numbers.
Additionally f has to preserve some distance information according to the metric d, so that d(x,y) >= | f(x,z) - f(y,z) |, where x, y, z e Sn.
Examples for such projections are:
• all distance functions by themselves, as all metrics must fulfill the triangle inequality • inner products (if available), as they fulfill the cauchy-schwarz-bunjakowsky inequality.
• Projection Line:
A projection line is a n-dimensional vector I e S" . This vector is always used as the second parameter in a projection f: S" x I — > R.
• General (k-) Nearest Neighbor Search:
Nearest Neighbor Search (NNS), also known as proximity search or closest point search, is a numerical optimization problem for finding closest points in multidimensional metric spaces. The problem is: given a set S of points in d- dimensional space V and a query point q e V, find the closest point in S to q as defined by the distance in the metric space. When talking about k-nearest neighbors we refer to the k closest points to a query Point q. A metric space is a set where a notion of distance between elements of the set is defined.
• ε-Approximate Nearest Neighbor Search: ε-Approximate Nearest Neighbor Search is an approximation to the general nearest neighbor search problem. The problem is: given a set S of points in d-dimensional space V and a query point q e V, find all the points in S for which the distance to q is smaller than a fixed ε.
• Contrast filtered Nearest Neighbor Search: Contrast Filtered Nearest Neighbor Search is another approximation to the general nearest neighbour search problem. The problem is: given a set S of points in d- dimensional space V and a query point q e V, return a very small or even empty set of points in S for which the distance to q is at least a factor c, with c > 1, smaller than almost all other points in S,
• SIFT:
Scale-invariant feature transform (or SIFT) is a computer vision algorithm for extracting distinctive features from images, to be used in algorithms for tasks like matching different views of an object or scene (e.g. for stereo vision) and object recognition. This algorithm is described in the US 6711293 patent application.
• Search quality:
There are two metrics which describe the performance of an information retrieval system. • Recall: The proportion of relevant data signatures retrieved out of all relevant data signatures available
• Precision: The proportion of relevant data signatures retrieved to all the signatures retrieved
NV-T ree Creation
First, a large set of isotropic random lines is generated and kept in a line pool. When the construction of an NV-tree index starts, all data signatures are considered to be part of a single temporary partition. Data signatures belonging to the partition are first projected onto a single projection line through the high-dimensional space. For best retrieval quality the line with the largest projection variance is chosen from the line pool.
The projected values are then partitioned into disjoint sub-partitions based on their position on the projection line. In case of overlapping NV-Trees, sub-partitions are created for redundant coverage of partition borders. These overlapping partitions may cover just a small part exactly around the partition borders or may grow to fully adjoining overlapping partitions. Strategies for partitioning are described in detail later in the text.
This process of projecting and partitioning is repeated for all the new sub-partitions which are of a smaller cardinality using a new projection line at each level. It can stop at any time as soon as the number of data signatures in a sub-partition reaches a specified lower limit which is less than or equal to one access in the data store. When a branch stops, the following steps are performed:
1. The line used for projecting this sub-partition is stored in the parent node.
2. A leaf partition is appended to the data file, containing the data signature identifiers of the sub-partition ordered by their rank along the projection line of the leaf node.
3. The location in the data file, where this sub-partition was saved, is stored in the parent node.
Overall, an NV-tree consists of: a) a hierarchy of small inner nodes, which are kept in memory during query processing and guide the data signature search to the appropriate leaf node; and b) leaf nodes, which are stored on a data store and contain the references (data signature identifiers) to the actual data signatures.
NV-Tree Search
During query processing, the query data signature first traverses the intermediate nodes of the NV-tree. At each level of the tree, the query data signature is projected to the projection line associated with the current node.
In case of overlapping partitions the search is directed to the sub-partition with center-point closest to the projection of the query data signature, otherwise it follows into the partition the projection is assigned to. This process of projection and choosing the right sub-partition is repeated until the search reaches a leaf partition.
The leaf partition is then read from the data store and the query data signature is projected onto the projection line of the leaf partition. Then the search returns the data signature identifiers which are closest to that projection.
Note that since the leaf partitions have fixed size, the NV-tree guarantees query processing time of one data store read regardless of the size of the data signature collection. Larger collections need to do more projections and therefore deeper NV-trees, but still requiring just a single access to the data store.
The cost of the query processing consists of adding these 3 factors:
The time it takes to traverse the NV-tree The time it takes to load the sub-partition from the data store
The time it takes to aggregate the data signatures in the sub partition NV-Tree data structure
The NV-Tree is composed of a hierarchy of small intermediate nodes that eventually point to much larger leaf nodes. Each intermediate node contains the following four arrays: • Child: This array points to the child nodes of the intermediate node. The child nodes may in turn be intermediate nodes or leaf nodes.
• Projectionϋne: This array stores a pointer to the description of the projection line of each sub-partition. • PartitionBorder: This array keeps track of the borders of each partition (including the overlapping partitions if applicable).
• SearchBorder (optionally): This array keeps track of the half-way values of projections between the boundaries of adjacent partitions. In case of overlapping partitions these values are used to direct the search to the sub-partition with center-point closest to the projection of the query data signature.
All leaf nodes are stored on a large data store and each leaf node is at most the size of a single data store read. The leaf nodes on the data store contain an array of data signature identifiers sorted by their projected value.
Partitioning Strategies
A partitioning strategy is likewise needed at every level of the NV-tree.
The Balanced partition strategy partitions data based on cardinality. Therefore, each subpartition gets the same number of data signatures, and eventually all leaf partitions are of the same size. Although node fan-out may vary from one level to the other, the NV-tree becomes balanced as each leaf node is at the same height in the tree.
The Unbalanced partitioning strategy uses distances instead of cardinalities. In this case, subpartitions are created such that the absolute distance between their boundaries is equal. All the data signatures in each interval belong to the associated sub-partition. With this strategy the projections leads to a significant variation in the cardinalities of sub-partitions. To implement the Unbalanced strategy, the standard deviation s<j and mean m of the projections along the projection line are calculated. Then a parameter a is used to determine the partition borders as ..., m - 2αs<i, m - αsa, m, m + αsd, m + 2αSd, ...
Both strategies can be partitioned into up to 100 sub-partitions on each line, which tends to produce shallow and wide NV-Trees, while partitioning in very few (2 - 10) partitions per line yields deep and narrow trees. Furthermore both strategies can flexibly interleave each other, talking thereby of a hybrid NV- Tree. Overlapping is an additional feature that may be applied flexibly for any node and for both partitioning strategies. It creates additional partitions covering the area around the partition borders.
Insertion and Deletion Inserting or deleting a data signature from the NV-tree is performed according to the following process:
1. Traverse the NV -tree to identify (all) the partition(s) in the data file where the data signature is located. In case of overlapping partitions, the data signature may be saved in several partitions. 2. Update the data signature in the partition(s).
In the case when a partition is full, i.e. once a new item has been added it will take more than one data read access to retrieve the partition, it needs to be split to accommodate more values. All data signatures in the partition are partitioned into sub-partitions, each subpartition projected and then appended to the data file. Additionally the reference to the old sub-partition on disk is replaced with a reference to a new node in the NV -tree, which references the newly created sub-partitions.
In the case the number of data signatures in a partition x drops below a certain threshold (usually a small fraction of the leaf node's total storage capacity) it has to be merged with its sibling leaf nodes and when some siblings are inner nodes also with the children of those inner nodes. All data signatures of the current node and its siblings are loaded from the data store, a best line for the whole set is found and if the set does not fit within a single leaf node it is again split into sub-partitions. Afterwards the parent node of x is reorganized or replaced and all old leaf nodes marked as obsolete. In the case that the siblings of a leaf node to be merged are together ancestors of more than 15 - 100 other leaf nodes, the merge step might refrain from re-indexing this whole large subtree, but instead distributing the remaining signatures in that leaf node among the children of a neighboring partition.
Aggregating results of several NV-Trees
Efficient and effective search of contrast filtered nearest neighbors might be improved by using more than one single NV-Tree. These result sets might be simply merged with a naive aggregation algorithm (successively popping off the highest ranked identifier from each result list) or might take into account in how many result sets a data signature is found, which implicit a higher ranking in the final result. Detail Description of the Drawings
Referring to Fig. 1, showing a sample NV-Tree. 101 shows the inner structure of the tree, while 102 refers to the layout on the data store. 103 shows a sample NV-Tree inner node containing a total of four storage fields, three of them are mandatory. In case overlapping is applied 104 refers to the PartitionBorder-Array and 105 to Search Border-Array keeping track of the half-way values of projections for searching in overlapping NV-Trees. In case of non- overlapping NV-Trees 104 is empty or non-existent, while 105 combines the functionionality of the PartitionBorder and the SearchBorder-Array, because PartitionBorders are also used for guiding the search. Referring to 106 a reference to a line is stored with every reference to a child node 107. Child nodes can either be another NV-Tree inner node as 103 or a NV-Tree leaf node on the data store 108.
Referring to Fig. 2, showing a balanced partitioning strategy. The data signatures projected onto line 202 are partitioned into partitions 201 of equal cardinality (expressed by the same height of the partitions 201). Since the projected data signatures on the line are expected to be normal distributed the absolute width of a partition on the line is much larger at the extremes. Additionally to the base partitions in 201, overlapping partitions 203 might be added.
Referring to Fig. 3, showing an unbalanced partitioning strategy. The data signatures projected onto line 302 are partitioned into partitions 301 of equal width 304 on the line. The width along the line is best to be determined by a fixed multiple of the standard deviation 304, partitioning starting from the median 305. The number of data signatures inside the individual partitions 301 may vary significantly in size, since the projected data signatures are expected to be normal distributed. Also in this case overlapping partitions 303 may be added. Referring to Fig. 4, showing the steps for creating a NV-Tree from a collection of data signatures 401. The process starts by initializing data structures that keep track of the current path down the NV-tree 402 during the creation process. The variable h denotes the current height, pos[h] denotes the current partition at height h and nrPart[h] denotes the number of partitions at height h. The data signatures in partition pos[h] at height h are projected to a set of lines 403. The line which distributes the projected data best is then selected 404. As shown in 405, If the data signatures in partition pos[h] at height h do not fit in a leaf node, then we partition the data signatures along the chosen line 406 and set h=h+l, pos[h]=0, nrPart[h] = #Number of Partitions and step back to 403. When the data signatures in partition pos[h] at height h fit in a leaf node then the data signature identifiers are sorted by their projected value and stored on the data store 407. We now turn to the next partition in the node, so we set pos[h]=pos[h]+l 408. As shown in 409. if pos[h] is equal or less than nrPart[h] we step back to 3 and process the data signatures in the next partitions, else if pos[h]>nrPart[h] then we have stored all the data signatures on this partition to data store, and may step up the tree 410, by setting h=h-l. As shown in 411, if h<l then we are stepping up from the root node, which marks the end of the index creation 412, else we step back to 409.
Referring to Fig. 5, showing the steps for searching a NV-tree for a query data signature q 501. The process involves first setting n to be the root node of the NV-tree 502. We now start traversing down the NV-tree until c is a leaf node. This is done by selecting line I associated with the current node n and projecting q to line I to get the projected value v. Using v, we can find a child c in which is closest to v. Then we set I to be the line associated with c 503. If c is not a leaf node, 504, then we set n=c 505 and step back to 503. When node c is a leaf node, it is loaded from the data store 506 and the ranked nearest neighbor list is retrieved from c 507, ending the search 508.
Referring to Fig. 6, showing the steps for inserting into a NV-tree a query point q 601. The process involves first finding all leaf nodes in which the data signature will be inserted into 602. in case of overlapping segments there can be several. In case of non-overlapping segments, a point q is always inserted into just one leaf node 602. Then, for each leaf node c 603 we load c from data store 604. If c has room for another identifier 605, then we project q to the line associated with c 606 to get the projected value v and insert the identifier 607 of data signature q into c at the position indicated by v. The leaf node c is then updated and saved to the data store 608. If c was the last leaf node 609 found in 602, then we end the insertion 610, otherwise we step back to 603. Turning back to the case c is full 605, we need to find all identifiers in c 611, load the corresponding data signatures from data store 612 and input them to the index creation from 101. The steps in 101 will create a new sub-tree pointing to new leaf nodes in the data store. The parent of c which has up to now pointed to c, is now updated to point to this new subtree 613. The old leaf node c, is now deleted 614 by marking it as free, making the now empty space available for new leaf nodes created in further splits. If c was the last leaf node 615 found in 602, we end the insertion 616, else we step back to 603.
Referring to Fig. 7, showing the steps for deleting data signature q from the NV-tree 701. The process involves first finding all leaf nodes containing q 702. In case of overlapping segments they can be many. In case of non-overlapping segments, only a single leaf node contains q 702. Then, for each leaf node c 703 we load c from data store and remove the identifier of q from the c 704. If c fulfills the minimum load factor 705, then c is updated and saved to data store 706. If c was the last leaf node 707 found in 702, then we end the deletion 708, otherwise we step back to 703. Turning back to the case c does not fulfill the minimum load factor 705, we need to load all leaf nodes from data store which have c's parent as their ancestor 709. All identifiers are retrieved 710 from these leaf nodes, and their data signatures loaded from data store 711. The data signatures are then input into the index creation from 101. The steps in 101 will create a new sub-tree pointing to new leaf nodes in the data store. The reference in the grand-parent of c is now replaced with this new sub-tree 712, and the parent of c is deleted. Then c, along with all its siblings is deleted 713 from data store by marking them as free for new leaf nodes when the tree is extended again during a split. If c was the last leaf node 714 found in 702, then we end the deletion 715, otherwise we step back to 703.
Pseudo code for one preferred embodiment
Pseudocode NV -tree TreeCreation :
************ procedure TreeCreation(data signature set D)
{
Line = new Line(D) through the metric space TreeCreationRecursive( D, Line )
}
procedure TreeCreationRecursive(data signature set D, line n)
{ Take the set D of data signatures and project all data signatures dl...dn onto line n in the same metric space
Examine the distribution of the data along this line, cut the line into x pieces and classify the data signatures of set D into x subsets Dl..Dx according to which partition they have been projected to.
Build additional x-1 (overlapping) subsets around the cut points on the line (as shown in figure Figure 2 and Figure 3) Save the line of the partition to the NV -tree Save the borders of all sub-partitions to the NV -tree Save the quantiles search border values of all sub-partitions to the NV - tree for 1 <= i <= 2x-l check
{ if (partition(i).size < IO.granularity on the data store)
{ write a flag to Tree-File indicating we stop recursion append Partition to data file
} else
{ write a flag to Tree-File indicating we go on
Line = new Line(partition(i)) through the metric space TreeCreationRecursive(partition(i),Line)
}
}
}
Search:
******
procedure Search(data signature x)
{ node = root of the NV -tree
while (true)
{ p Va I = project x to the line associated with node
Partition p = the sub-partition in node directed by the search border values if p stored on data store break the loop; else node = node->Child(p)
}
Partition res = load partition p from data store
pVal = project x to the line associated with res
Aggregate res, starting from pVal }
HelperFunction: *************
procedure LocatePartitions(Data signature x, Node* currNode, pVal, list I)
{ if pVal < leftmost border in currNode Partition p = leftmost Partition in currNode if( p is leaf) l.add( pVal, p.id ) else pVal = project x to the line associated with currNode LocatePartitions( x, p, pVal, I ) else if pVal > rightmost border in currNode
Partition p = rightmost Partition in currNode if( p is leaf) l.add( pVal, p.id ) else pVal = project x to the line associated with currNode LocatePartitions( x, p, pVal, I ) else offset = the leftmost border in currNode where pVal is bigger
Partition pi = currNode. Partition(offset) Partition p2 = currNode. Partition(offset+1)
pVall = project x to the line associated with pi pVal2 = project x to the line associated with p2
if pi is leaf l.add( pVall, pi. id ) else LocatePartitions( x, pi, pVall, I )
if p2 is leaf l.add( pVal2, p2.id ) else LocatePartitions( x, p2, pVal2, I )
}
Insert:
*****
procedure Insert(data signature x)
{
Node = root of the NV -tree pVal = project x to the line associated with Node
List I = LocatePartitions( x, Node, pVal, new List )
descID = x. id; for 1 <= j <= l.sizeQ
{ pVal = l[j].pVal; PartitionID = l[j].PartitionID
if partitions is full split the partition and update the NV -tree
write the descID/pVal pair to Partition=PartitionID in the data file
}
Delete:
procedure Delete(data signature x) {
Node = root of the NV -tree
pVal = project x to the line associated with Node List I = new empty List; LocatePartitions( x, Node, pVal, I )
descID = x.id; for 1 <= j <= l.size()
C PartitionID = l[j].PartitionID delete the descID/pVal pair from Partition=PartitionID in the data file }
}
The implementations of the invention being described can obviously be varied in many ways. Such variations are not to be regarded as a departure from the spirit and scope of the present invention, and all such modifications as would be obvious to one skilled in the art are intended to be included within the scope of the following claims.
Comparative Performance Results
The nearest neighbor search capability of the NV -tree has been compared to its closest competitors: Locality Sensitive Hashing and the PvS-Index. High emphasis was laid on a fair choice of the parameters, the factor a of the NV-Tree versus radius and word size of LSH.
For the experiments a collection of 179,4 million SIFT (Scale Invariant Feature Transform) data signatures was used, extracted from an archive of about 150 000 high-quality press photos. In order to evaluate the retrieval quality of the different high-dimensional index structures, several transformed versions of images from the collection were created. The transformations include rotation, cropping, affine distortions and convolution filters.
The inner product in Euclidean space was chosen as a commonly used projection function. It has to be noted, however, that the NV-Tree has also been evaluated with Ll and L2-distance as projection function. Out of these transformed images, a set of 500 000 query data signatures were created which were evaluated in the following four different setups:
• One overlapping hybrid NV-Tree (α = 0.55) (unbalanced partitioning on the upper hierarchies, balanced partition on the lower hierarchies) with naϊve leaf node organization (array) • One overlapping hybrid NV-Tree (α = 0.55) with optimized leaf node organization
• 3 non-overlapping hybrid IW-Trees (α = 0.75) with naϊve aggregation
• 12 LSH hash tables with radius of 65 and a word size of 10 with naive aggregation
All three NV-Tree setups constantly returned a result set of 1000 nearest neighbor candidates, guaranteeing good result quality as can be seen from Table 1. For LSH no guarantee can be given on how many neighbors are retrieved. With the chosen setup it yielded a minimum of 47 neighbors and a maximum of 156 256 with a median of 465.
Preliminary studies performed on this and other large data signature collections have shown that the definition of a nearest neighbors search is just meaningful in the context of contrast filtered nearest neighbor search. This can be theoretically justified by the results published in Beyer et. al "When is nearest neighbor meaningful" in Lecture Notes in Computer Science 1540:217-235, 1999 showing that a nearest neighbor must be significantly closer to a query point than most of the other points in the dataset in order to be considered meaningful. A contrast based definition of nearest neighbors approximates also the human notion of neighbors best. While in sparsely populated areas (as in the countryside) neighbors can be several kilometers of absolute distance away from each other, while in densely populated areas (as in cities) absolute distance between neighbors is just a few meters.
Table 1.
In the presented experiment the contrast ratio is defined by d(ni00, q)/d(ni, q) > 1.8, where nioo refers to the hundredth nearest neighbor of an exact nearest neighbor search as retrieved by a linear scan. Evaluating this definition on the 500 000 query data signatures a total of 248,212 data signatures surpass the contrast filter.
With only one data store access the overlapping NV-Tree performs best in terms of search time and receives still acceptable recall performance. Major drawback is the huge demand on disk space. This can be slightly reduced by using the whole bandwidth of a single disk access (32 4kb-pages instead of 6 4kb-pages for the given experimental setup) and avoiding one level of overlapping. In order to achieve the same retrieval quality the leaf node was structured by itself as a small tree containing another two levels of non-overlapping projections and finally a sorted array of identifiers, where up to 4 such arrays were touched during the aggregation.
The space requirement can be reduced significantly by removing the overlapping. Non- overlapping IW-Trees do not deliver as good result quality; therefore it needs an aggregation of at least 3 trees to get acceptable recall. In order to achieve comparable recall quality LSH needs at least 12 hash tables , which cause at least 12 (one per hash table and possibly more) accesses to the data store.
Although the recall for the experiments presented is very high for searching such a huge collection, the results are lacking on precision. While such low precision is well acceptable in local data signature applications, where many data signatures "vote" on the similarity of an object, this is unacceptable for user-orientated single data signature applications, since a user can only scan a handful of results and not several hundreds.
In order to increase such precision, returning now at most 8 nearest neighbor candidates, we need to add more index structures and perform a more sophisticated aggregation on the results:
• 6 non-overlapping hybrid NV-Trees (α = 0.75) with rank aggregation and a minimum limit of 2 votes
• 24 LSH hash tables with radius of 80 and a word size of 12 and vote count aggregation
• A PvS-Framework consisting of 3 different indices using a 13-13-13-13-13 segmentation with rank aggregation and a minimum limit of 2 votes
Table 2
The results in table 2 show that the IW-Tree configuration clearly out beats LSH in terms of disk space and search speed for obtaining a comparable amount of recall quality and precision. The PvS-Framework suffers from its huge storage demand on the data store together with a rather low recall when only using 3 indices. Industrial Applicability
The NV -tree is a general data structure for high dimensional nearest neighbor search. It supports any kind of data dimensionality and multiple distance measures, and is applicable for at least the following applications:
Searching multimedia on the Web Image retrieval
Image copyright monitoring
Music retrieval
Music copyright monitoring
Video retrieval Video copyright monitoring
General multimedia retrieval
Object and face retrieval and detection
Robotic Vision
Combined text and multimedia retrieval Searching chemical structures and biological structure (e. proteins)
Searching DNA sequences and in fact, in any data mining application were data can be represented with data data signatures.

Claims

Claims:
1. A method for creating a search tree for data mining with constant search time, said method comprising the steps of: a) generating a set of isotropic random lines and store said lines in a line pool, b) projecting all the data signatures onto a projection line from said pool c) building a tree node storing information characterizing said line, d) segment said line into two or more line partitions, e) segment further said two or more line partitions, f) repeat steps b - e for each partition until a stop value is reached, g) project data signatures of current partition to a line, h) sort said data signatures, i) store said data signatures
CHARACTERIZED IN THAT the size of each tree node is such that it can be fetched in a single data read access..
2. A method for inserting data signatures into a search tree according to claim 1, said method comprising the steps of: a) traversing said search tree, b) projecting data signatures representing said data to be inserted onto a projection line, c) select one or more path based on a projection value obtained in step b, d) repeat steps a - c until said data signature is projected to a value belonging to a partition stored in said data store, e) searching for location in pre-sorted data signatures of said partition, f) store said data signature.
3. A method for deleting data signature from a search tree according to claim 1, said method comprising the steps of: a) traversing said search tree, b) projecting data signatures, representing said data signatures to be deleted, onto a projection line, c) selecting one or more path based on a projection value obtained in step b, d) repeat steps a - c until said data signature is projected to a value belonging to a partition stored in said data store, e) searching for location in pre-sorted data signatures of said partition, f) delete said data signature.
4. A method for data mining a search tree with constant search time according to claim 1, said method comprising the steps of: a) traversing a search tree to a leave, b) retrieving one or more data signature from said leave, c) read data pointed to by said data signature, d) locating one or more value in said data, referencing one or more data signature, e) retrieve the n-nearest data signature neighbors, terminate said search.
5. A computer program or suite of computer programs so arranged such that when executed on a processor said program of suite of programs cause(s) said processor to perform the method of any of claims 1 -4.
6. A computer readable data storage medium storing the computer program or at least one of the suite of computer programs of claim 5.
EP07736624A 2006-06-06 2007-06-06 Data mining using an index tree created by recursive projection of data points on random lines Ceased EP2030131A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
IS8499 2006-06-06
PCT/IS2007/000014 WO2007141809A1 (en) 2006-06-06 2007-06-06 Data mining using an index tree created by recursive projection of data points on random lines

Publications (1)

Publication Number Publication Date
EP2030131A1 true EP2030131A1 (en) 2009-03-04

Family

ID=38359743

Family Applications (1)

Application Number Title Priority Date Filing Date
EP07736624A Ceased EP2030131A1 (en) 2006-06-06 2007-06-06 Data mining using an index tree created by recursive projection of data points on random lines

Country Status (3)

Country Link
US (1) US9009199B2 (en)
EP (1) EP2030131A1 (en)
WO (1) WO2007141809A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9305039B2 (en) 2012-12-19 2016-04-05 International Business Machines Corporation Indexing of large scale patient set

Families Citing this family (46)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8312051B2 (en) * 2007-06-27 2012-11-13 Dolby Laboratories Licensing Corporation Incremental construction of search tree with signature pointers for identification of multimedia content
US8849865B1 (en) * 2007-08-16 2014-09-30 Google Inc. Querying a data store of impressions
US9959700B2 (en) * 2007-09-07 2018-05-01 Veritone, Inc. System and method for secured delivery of creatives
WO2010064263A1 (en) * 2008-12-02 2010-06-10 Haskolinn I Reykjavik Multimedia identifier
US20100153375A1 (en) * 2008-12-16 2010-06-17 Foundation For Research And Technology - Hellas (Institute Of Computer Science --Forth-Ics) System and method for classifying and storing related forms of data
US10496670B1 (en) * 2009-01-21 2019-12-03 Vmware, Inc. Computer storage deduplication
US20100332550A1 (en) * 2009-06-26 2010-12-30 Microsoft Corporation Platform For Configurable Logging Instrumentation
US20100332531A1 (en) * 2009-06-26 2010-12-30 Microsoft Corporation Batched Transfer of Arbitrarily Distributed Data
US8392380B2 (en) * 2009-07-30 2013-03-05 Microsoft Corporation Load-balancing and scaling for analytics data
US20110029516A1 (en) * 2009-07-30 2011-02-03 Microsoft Corporation Web-Used Pattern Insight Platform
US8135753B2 (en) * 2009-07-30 2012-03-13 Microsoft Corporation Dynamic information hierarchies
US8671265B2 (en) 2010-03-05 2014-03-11 Solidfire, Inc. Distributed data storage system providing de-duplication of data using block identifiers
WO2011126996A2 (en) * 2010-04-05 2011-10-13 California Institute Of Technology System and method for nucleic acid sequence design
US20110314045A1 (en) * 2010-06-21 2011-12-22 Microsoft Corporation Fast set intersection
US9834439B2 (en) 2010-07-20 2017-12-05 California Institute Of Technology Biomolecular self-assembly
KR20130020050A (en) * 2011-08-18 2013-02-27 삼성전자주식회사 Apparatus and method for managing bucket range of locality sensitivie hash
US9838269B2 (en) 2011-12-27 2017-12-05 Netapp, Inc. Proportional quality of service based on client usage and system metrics
US9054992B2 (en) 2011-12-27 2015-06-09 Solidfire, Inc. Quality of service policy sets
US8429165B1 (en) * 2012-03-07 2013-04-23 Xerox Corporation Systems and methods of partitioning data for synchronous parallel processing
US9104770B2 (en) * 2013-02-28 2015-08-11 Oracle International Corporation Methods for query processing of topological relationships among complex spatial objects
FR3008505B1 (en) * 2013-07-10 2017-03-03 Thales Sa METHOD FOR OPTIMIZING PARALLEL DATA PROCESSING ON A MATERIAL PLATFORM
US20160299961A1 (en) * 2014-02-04 2016-10-13 David Allen Olsen System and method for grouping segments of data sequences into clusters
US20150244795A1 (en) 2014-02-21 2015-08-27 Solidfire, Inc. Data syncing in a distributed system
WO2015167562A1 (en) 2014-04-30 2015-11-05 Hewlett-Packard Development Company, L.P. Using local memory nodes of a multicore machine to process a search query
US9798728B2 (en) * 2014-07-24 2017-10-24 Netapp, Inc. System performing data deduplication using a dense tree data structure
US10133511B2 (en) 2014-09-12 2018-11-20 Netapp, Inc Optimized segment cleaning technique
US9671960B2 (en) 2014-09-12 2017-06-06 Netapp, Inc. Rate matching technique for balancing segment cleaning and I/O workload
US9836229B2 (en) 2014-11-18 2017-12-05 Netapp, Inc. N-way merge technique for updating volume metadata in a storage I/O stack
WO2016122653A1 (en) * 2015-01-30 2016-08-04 Hewlett Packard Enterprise Development Lp Common search distances in data partitions
US9720601B2 (en) 2015-02-11 2017-08-01 Netapp, Inc. Load balancing technique for a storage array
US9762460B2 (en) 2015-03-24 2017-09-12 Netapp, Inc. Providing continuous context for operational information of a storage system
US9710317B2 (en) 2015-03-30 2017-07-18 Netapp, Inc. Methods to identify, handle and recover from suspect SSDS in a clustered flash array
US9740566B2 (en) 2015-07-31 2017-08-22 Netapp, Inc. Snapshot creation workflow
US11100073B2 (en) * 2015-11-12 2021-08-24 Verizon Media Inc. Method and system for data assignment in a distributed system
US10810458B2 (en) 2015-12-03 2020-10-20 Hewlett Packard Enterprise Development Lp Incremental automatic update of ranked neighbor lists based on k-th nearest neighbors
US10929022B2 (en) 2016-04-25 2021-02-23 Netapp. Inc. Space savings reporting for storage system supporting snapshot and clones
US10450599B2 (en) 2016-07-05 2019-10-22 California Institute Of Technology Fractional initiator hybridization chain reaction
CA3034617A1 (en) 2016-08-30 2018-03-08 California Institute Of Technology Immunohistochemistry via hybridization chain reaction
US10642763B2 (en) 2016-09-20 2020-05-05 Netapp, Inc. Quality of service policy sets
US10976948B1 (en) * 2018-01-31 2021-04-13 Pure Storage, Inc. Cluster expansion mechanism
US11403367B2 (en) 2019-09-12 2022-08-02 Oracle International Corporation Techniques for solving the spherical point-in-polygon problem
US11507590B2 (en) 2019-09-13 2022-11-22 Oracle International Corporation Techniques for in-memory spatial object filtering
US20210303633A1 (en) * 2020-03-30 2021-09-30 International Business Machines Corporation Shard hashing
US11244156B1 (en) * 2020-10-29 2022-02-08 A9.Com, Inc. Locality-sensitive hashing to clean and normalize text logs
EP4284925A1 (en) 2021-01-26 2023-12-06 California Institute of Technology Allosteric conditional guide rnas for cell-selective regulation of crispr/cas
CN117131050A (en) * 2023-08-28 2023-11-28 中国科学院软件研究所 Spatial index method based on magnetic disk and oriented to workload and query sensitivity

Family Cites Families (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020123987A1 (en) * 2001-01-18 2002-09-05 Cox James A. Nearest neighbor data method and system
US7117216B2 (en) * 2001-06-07 2006-10-03 Sun Microsystems, Inc. Method and apparatus for runtime merging of hierarchical trees
US7287026B2 (en) * 2002-04-05 2007-10-23 Oommen John B Method of comparing the closeness of a target tree to other trees using noisy sub-sequence tree processing
US20070250476A1 (en) * 2006-04-21 2007-10-25 Lockheed Martin Corporation Approximate nearest neighbor search in metric space
US8312051B2 (en) * 2007-06-27 2012-11-13 Dolby Laboratories Licensing Corporation Incremental construction of search tree with signature pointers for identification of multimedia content
US7610269B1 (en) * 2007-07-30 2009-10-27 Netlogic Microsystems, Inc. Method and apparatus for constructing a failure tree from a search tree
US7953685B2 (en) * 2007-12-27 2011-05-31 Intel Corporation Frequent pattern array
JP5333815B2 (en) * 2008-02-19 2013-11-06 株式会社日立製作所 k nearest neighbor search method, k nearest neighbor search program, and k nearest neighbor search device
WO2010095004A1 (en) * 2009-02-23 2010-08-26 Freescale Semiconductor, Inc. Priority search trees

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
None *
See also references of WO2007141809A1 *

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9305039B2 (en) 2012-12-19 2016-04-05 International Business Machines Corporation Indexing of large scale patient set
US9355105B2 (en) 2012-12-19 2016-05-31 International Business Machines Corporation Indexing of large scale patient set
US10242085B2 (en) 2012-12-19 2019-03-26 International Business Machines Corporation Indexing of large scale patient set
US10394850B2 (en) 2012-12-19 2019-08-27 International Business Machines Corporation Indexing of large scale patient set
US11860902B2 (en) 2012-12-19 2024-01-02 International Business Machines Corporation Indexing of large scale patient set

Also Published As

Publication number Publication date
WO2007141809A1 (en) 2007-12-13
US20100174714A1 (en) 2010-07-08
US9009199B2 (en) 2015-04-14

Similar Documents

Publication Publication Date Title
US9009199B2 (en) Data mining using an index tree created by recursive projection of data points on random lines
EP0961211B1 (en) Database method and apparatus using hierarchical bit vector index structure
Baeza-Yates et al. Fast approximate string matching in a dictionary
Gionis et al. Similarity search in high dimensions via hashing
US20100106713A1 (en) Method for performing efficient similarity search
Liu et al. An investigation of practical approximate nearest neighbor algorithms
Tao et al. Continuous nearest neighbor search
Morfonios et al. ROLAP implementations of the data cube
Chávez et al. A compact space decomposition for effective metric indexing
Lejsek et al. NV-Tree: An efficient disk-based index for approximate search in very large high-dimensional collections
Lee et al. Z-SKY: an efficient skyline query processing framework based on Z-order
US6493709B1 (en) Method and apparatus for digitally shredding similar documents within large document sets in a data processing environment
US10521441B2 (en) System and method for approximate searching very large data
US7970769B2 (en) Apparatus and method for optimized index search
Cantone et al. Antipole tree indexing to support range search and k-nearest neighbor search in metric spaces
CN1152365A (en) Method for storing and retrieving data and memory arrangement
US7783589B2 (en) Inverted index processing
Tavenard et al. Improving the efficiency of traditional DTW accelerators
Mohamed et al. Quantized ranking for permutation-based indexing
Böhm et al. Supporting KDD applications by the k-nearest neighbor join
Skopal et al. New dynamic construction techniques for M-tree
Navarro et al. Searching in metric spaces
Zhang et al. PARROT: pattern-based correlation exploitation in big partitioned data series
Georgiadis et al. Skyline-based dissimilarity of images
KR20030030514A (en) A method for optimizing the post-processing of sub-sequence matching in time-series databases

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

17P Request for examination filed

Effective date: 20081230

AK Designated contracting states

Kind code of ref document: A1

Designated state(s): AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IS IT LI LT LU LV MC MT NL PL PT RO SE SI SK TR

AX Request for extension of the european patent

Extension state: AL BA HR MK RS

DAX Request for extension of the european patent (deleted)
17Q First examination report despatched

Effective date: 20170102

REG Reference to a national code

Ref country code: DE

Ref legal event code: R003

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE APPLICATION HAS BEEN REFUSED

18R Application refused

Effective date: 20180623