|
|
|
|
|
by overlords
2343 days ago
|
|
They are doing the same thing - using less memory by hashing. The hashing trick in VW hashes multiple same words into one integer, not the same as reformer, but similar to how reformer puts similar vectors together. With VW's ngram/skipgram features, you get the same kind of effect - similar strings hash into the same hash. So locality sensitive hashing = (is around about the same thing as) ngram/skipgram on strings plus hashing trick. |
|