in reply to Similarity searching
Well, how much time do you have?
If you have 2e9 subject histograms and 5e5 query histograms and you would compare each against each other, then this is 1e15 comparisons (not mentioning finding the best fit). If, for a moment, we assume that a day has 1e5 seconds (a bit less in reality), then you need to do 1e10 comparisons per second (10 GHz).
I would conclude that you need a lot of time to do this exercise. Unless you have some additional knowledge about the distribution of your data (and I admit that I do not really understand what you proposed as a potential algorithm).
If you encode your data as vectors of length 8000 where each element stores the value of the histogram, then the distance between a subject histogram and a query histogram is the sum of the element-wise minima. This would add another multiple to the number of operations required...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Similarity searching
by baxy77bax (Deacon) on Jan 25, 2014 at 16:53 UTC | |
by tangent (Parson) on Jan 25, 2014 at 18:13 UTC | |
by BrowserUk (Patriarch) on Jan 25, 2014 at 17:24 UTC |