User:Jeblad/Detect text segments with a convolving hash

From mediawiki.org

Detect text segments with a convolving hash is an attempt to describe an algorithm for aligning text fragments. Even if the algorithm has linear order each step is pretty heavy.

The basic idea is to convolve a structure over a text. The haystack is the text and can be heavily edited. The needle is a special structure and represents the original fragment. The needle structure is created such that it works like locality-sensitive hashing, thereby accepting a lot of changes yet still being able to find the target.

During convolution the values will slowly accumulate until the whole needle is inside the candidate range. It will then stay high until the needle starts to move out of the range. If the candidate range is unmodified, then this will give a clean triangular shape. Width moderate editing the top will flatten out, and with heavy editing it might form an irregular plateau-ish landscape.

It is easier to see what's going on in the basic algorithm than the more convolved approaches.

Basic algorithm[edit]

Assume there is a text represented as a vector of chars (or codepoints) or a haystack string, and a shorter segment or a needle string. Also assume the wanted needle digest comes from the smaller segment and is , and the haystack has the digest . These digests are vectors, but can be reprocessed into binary numbers. For simplicity call the unprocessed digests for a needle vector and a haystack vector, and likewise the truncated version for a needle digest and a haystack digest. It is easiest to assume that we have some function that truncates the elements in the vector into a binary digest, thus we can forget the distinction.

Calculate the needle digest as

Out of this there will be a needle vector

In the previous there is a hash function that takes a short string of chars (or codepoints) and folds it into an alternate range. Often something like w:Pearson hashing is used as speed is crucial, while ideal properties are unimportant, and then a precomputed lookup table can be used instead of a modulus operations. The alternate range is the length of the wanted digest, or a vector in this case.

Calculate the haystack digest for a window as

As part of the previous compare and with some distance metric and sum the differences. The overall difference would be a measure of how good a match the needle is to a particular location in the haystack

Each of the elements in will now hold the accumulated distance for a specific offset into the text .

Adjust the distance metric[edit]

There are a lot of kernels for doing correlation, and as the digest should be a binary string it could simply sum elements from the haystack where the sign is inverted for zeros in the needle

This can be calculated a lot more efficient as a summation over two masked vectors, although even more efficient solutions exists.

Avoid repeating calculations[edit]

During the convolution a lot of hashing operations are redone again and again. This creates a lot of unnecessary load. Instead the hashed values can be updated in place. To do this there is a leading action and a trailing action. Those do in place updates according to the needle digest

This assumes the digest is precomputed.

Out of this there will be a vector with correlation coefficients for each code point in the text. For this to be a proper correlation coefficient it should be normalized, but for this kind of use the algorithm can be speed up by dropping this.

Realign sequences[edit]

Even if the approximate starting and ending spots for the needle can be found, it is still only approximations. What we do know is that the convolution will increase as soon as the needle starts to enter the target range. This means the increase can be detected and after a short ramping up sequence the starting point can be detected. Likewise, the point where the decrease ends can be detected and this is the ending point.

To properly detect the increase and decrease the overall noise level must be detected. Ideally the noise level outside of the target fragment is -1, and the ideal signal level inside the target fragment is equal to the length of the needle. Thus, we can expect a pretty high signal-to-noise ratio for sequences of some length. A simple method to find the most likely target is to find the maximum correlation coefficient, and then scan forward for a distance up to the length of the needle, or perhaps even twice that. Find the slope at a level about one half of the maximum value, and estimate where it should pass zero. Find the word at that text location, and find the start of that particular word. That should be a good estimate for the beginning of the needle in the haystack. Repeat for a backward scan, again finding the word, but this time find the end of the word.

Variation[edit]

A variation is to use a hash over N words instead of a hash over N characters. This turns it into a kind of BLEU score instead of correlation kernels from spread spectrum communications. The difference is that the short strings are hashed over bins, thus it creates a digest-like structure. A standard BLEU score will only build a single overall metric, but here a metric is built for each bin, although it will not be normalized the same way.

See also[edit]