Viewing profile — tanujjain
tanujjain
HN member- Joined
- Mon, Oct 07, 2019, 9:09 AM UTC
- HN karma
- 6
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About tanujjain
No profile information was provided.
Recent public activity
-
comment
Comment #21196283
The cnn methods in the package are particularly robust against resolution differences. In fact, if it's just a simple up/downscale that differentiates 2 images, then even hashing a…
-
comment
Comment #21196247
The api already supports returning the hamming distances/cosine similarities along with the duplicate file list which can be used to sort the files. Please refer the docs for 'find…
-
comment
Comment #21196224
Only realized now that the 100-200ms time you refer to is for a single search and not for 400,000 searches. The package already achieves this brute-force speed. In fact, the packag…
-
comment
Comment #21196161
The hashes are 16 character hexadecimals represented as strings. Had a quick look at the faiss package and it looks promising. Would consider it for the next versions.
-
comment
Comment #21180352
As I pointed in other comments, the current implementation does not focus on the scale problem. However, using the 'scores' attribute of the 'find_duplicates' function, one could o…
-
comment
Comment #21180207
Just had a look, thanks for the pointer. And yes, it was designed for a dark purpose. Will try to find the comparisons with the currently implemented hashing methods and see if the…
-
comment
Comment #21179975
Thanks for the pointer, will check it out.
-
comment
Comment #21179940
That sounds good! Would be great if you can share the code, or even better, make a PR to the repo.
-
comment
Comment #21179933
We tried that approach, but it was way too slow.
-
comment
Comment #21179081
Retrieval using CNNs requires computing a cosine similarity matrix. So, for 'n' images, a matrix of size n x n would need to be stored in the memory. As you can see, the storage re…
-
comment
Comment #21178879
Scale is unfortunately not the focus of the current implementation. We would address this aspect in the future releases however. Considering the speed and memory requirements, foll…