-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLSH.hpp
More file actions
264 lines (223 loc) · 8.58 KB
/
LSH.hpp
File metadata and controls
264 lines (223 loc) · 8.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#ifndef _LSH
#define _LSH
#include <vector>
#include <utility>
#include <algorithm>
#include <limits>
#include <ctime>
#include "../core/item.hpp"
#include "LSHFun.hpp"
#include "../metrics/metrics.hpp"
#include "../utils/search.hpp"
/*
The following class implements the LSH data structure.
It consists of L hash tables with their respective hash functions.
These hash functions are AmplifiedHashFunctions (implemented in LSHFun.hpp).
They map each item into a bucket for each hash table.
*/
template <typename T>
class LSH {
private:
// Amount of images in training set
int imageCount;
// Data dimension
int dimension;
// Amount of hash functions for each amplified hash function
int functionAmount;
//Amount of hash tables(L)
int htAmount;
// Window size provided by the user
int windowSize;
// Size of hash tables
int htSize;
/*
Each bucket is represented as a vector of items.
Each hash table is an array containing "htSize" buckets.
Each hash table exists inside an array of size "L"
*/
std::vector<Item<T>*>** H;
// Each hash table has its respective AmplifiedHashFunction
AmplifiedHashFunction<T>** g;
/*
The following attributes are used in HashFunction.
More details about them can be found there.
*/
unsigned int mConstant;
int* m_mod_MValues;
public:
LSH (interface::input::LSH::LSHInput& lshi, const interface::Data<T>& ds, int ws) : windowSize(ws) {
functionAmount = lshi.k;
htAmount = lshi.L;
imageCount = ds.n;
dimension = ds.dimension;
Item<T>** items = ds.items;
/*
div is the number with which we will divide the total number of images
to calculate the size of each hash table. Proper values are 8 or 16
*/
int div = 16;
htSize = imageCount/div;
// Calculate the m mod M values, these are used in HashFunction to calculate the return value
mConstant = pow(2, 32) - 5;
m_mod_MValues = new int[dimension];
for (int b = 0; b < dimension; b++)
m_mod_MValues[b] = utils::modEx(mConstant, dimension-b-1, pow(2, 32/functionAmount));
// Initialize htAmount hash tables and AmplifiedHashFunctions
H = new std::vector<Item<T>*>*[htAmount];
g = new AmplifiedHashFunction<T>*[htAmount];
for (int i = 0; i < htAmount; i++) {
g[i] = new AmplifiedHashFunction<T>(windowSize, functionAmount, dimension, m_mod_MValues);
H[i] = new std::vector<Item<T>*>[htSize];
for (int j = 0; j < htSize; j++) {
std::vector<Item<T>*> tmpVec;
H[i][j] = tmpVec;
}
}
// Hash all items in training set and insert them into their buckets
for (int a = 0; a < imageCount; a++) {
for (int i = 0; i < htAmount; i++) {
unsigned int gres = g[i]->HashVector(items[a]->data);
H[i][gres%htSize].push_back(items[a]);
}
if ((a+1)%10000 == 0)
std::cout << "LSH: " << a+1 << " training items..." << '\n';
}
}
~LSH () {
for (int i = 0; i < htAmount; i++) {
delete[] H[i];
delete g[i];
}
delete[] H;
delete[] g;
delete[] m_mod_MValues;
}
/*
Each neighbor is represented as a pair of <distanceToQuery, neighborItem*>
The following function returns a vector of these pairs
*/
std::vector<std::pair<int, Item<T>*>> kNN (T* query, int N, int thresh = 0) {
// At first initalize the vector itself
std::vector<std::pair<int, Item<T>*>> d;
// Then initialize each pair with distance -> (max integer) and a null item
for (int i = 0; i < N; i++)
d.push_back(std::make_pair(std::numeric_limits<int>::max(), new Item<T>()));
// For each hash table...
int itemsSearched = 0;
for (int i = 0; i < htAmount; i++) {
// Calculate the bucket to which the query item corresponds
int bucket = g[i]->HashVector(query)%htSize;
// For each item inside the bucket...
for (int j = 0; j < H[i][bucket].size(); j++) {
/*
Check if the current item is already inserted into the vector
(it is possible since it may have been inserted from a previous hash table loop)
*/
bool alreadyExists = false;
for (int a = 0; a < N; a++)
if (d[a].second->id == H[i][bucket][j]->id)
alreadyExists = true;
if (alreadyExists)
continue;
// Since it does not exist in the vector, calculate its distance to the query item
int distance = metrics::ManhattanDistance<T>(query, H[i][bucket][j]->data, dimension);
/*
If the distance is less than the last pair's in the vector,
replace the pair with the new distance and the current item.
Then, sort the vector by ascending order based on distance.
This is done so that whenever we find a good neighbor candidate,
we replace the least similar neighbor in the vector
*/
if (distance < d[N-1].first) {
d[N-1].first = distance;
if (d[N-1].second->null)
delete d[N-1].second;
d[N-1].second = H[i][bucket][j];
std::sort(d.begin(), d.end(), utils::comparePairs<T>);
}
/*
If a certain threshold of items traversed is reached, return the vector.
If thresh == 0 it indicates that the user does not want to add a threshold.
*/
if (thresh != 0 && ++itemsSearched >= thresh)
return d;
}
}
return d;
}
/*
Each neighbor is represented as a pair of <distanceToQuery, neighborItem*>
The following function returns a vector of these pairs
*/
std::vector<std::pair<int, Item<T>*>> RangeSearch (T* query, double radius, int thresh = 0) {
// Initialize the vector
std::vector<std::pair<int, Item<T>*>> d;
/*
In this method, we do not need to sort the vector, also its size is not constant.
Hence, we do not need to initalize its values.
Simply, whenever a neighbor has distance less than radius, we add it to the vector
*/
// For each hash table...
int itemsSearched = 0;
for (int i = 0; i < htAmount; i++) {
// Calculate the bucket to which the query item corresponds
int bucket = g[i]->HashVector(query)%htSize;
// For each item inside the bucket...
for (int j = 0; j < H[i][bucket].size(); j++) {
// Check if the current item is already inserted into the vector
bool alreadyExists = false;
for (int a = 0; a < d.size(); a++)
if (d[a].second->id == H[i][bucket][j]->id)
alreadyExists = true;
/*
The "marked" condition will only be met whenever this function is used by
reverse assignment in clustering. When LSH is used for ANN, it will have no effect.
In reverse assignment, to avoid fetching the same items, we "mark" them when inserted
to a cluster so as to indicate that they are already assigned.
*/
if (alreadyExists || H[i][bucket][j]->marked)
continue;
int distance = metrics::ManhattanDistance<T>(query, H[i][bucket][j]->data, dimension);
// If the distance is less than radius, insert the pair into the return vector
if (distance < radius) {
std::pair<int, Item<T>*> tmpPair = std::make_pair(distance, H[i][bucket][j]);
d.push_back(tmpPair);
}
// If a certain threshold of items traversed is reached, return the vector.
if (thresh != 0 && ++itemsSearched >= thresh)
return d;
}
}
return d;
}
/*
The following function sets some properties of a SearchOutput object.
This object contains all information required to create the output file.
*/
void buildOutput (interface::output::SearchOutput& output, interface::Dataset<T>& query) {
// A vector containing the nearest neighbor ids of all query items
std::vector<int> nnIdVec;
// The true distances of the nearest neighbor of each query item
std::vector<double> timeVec;
double total_time = 0.0;
// For each query item...
for (int i = 0; i < query.number_of_images; i++) {
// Execute kNN and calculate time elapsed
clock_t begin = clock();
std::vector<std::pair<int, Item<T>*>> kNNRes = kNN(query.images[i], 1);
clock_t end = clock();
double elapsed = double(end - begin) / CLOCKS_PER_SEC;
total_time += elapsed;
// Push the relevant data to the vectors
nnIdVec.push_back( (int) kNNRes[0].second->id);
timeVec.push_back(elapsed);
if ((i+1)%1000 == 0)
std::cout << "LSH: " << i+1 << " query items..." << '\n';
}
// Set the following SearchOutput's attributes to the vectors created above
output.lsh_neighbors_id = nnIdVec;
output.lsh_time = timeVec;
output.lsh_total_time = total_time;
}
};
#endif