Live data from Hacker News

Viewing profile — tanujjain

tanujjain

HN member
Joined
Mon, Oct 07, 2019, 9:09 AM UTC
HN karma
6
Public activity
11 items

About tanujjain

No profile information was provided.

Recent public activity

  1. 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…

  2. 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…

  3. 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…

  4. 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.

  5. 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…

  6. 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…

  7. comment
    Comment #21179975

    Thanks for the pointer, will check it out.

  8. comment
    Comment #21179940

    That sounds good! Would be great if you can share the code, or even better, make a PR to the repo.

  9. comment
    Comment #21179933

    We tried that approach, but it was way too slow.

  10. 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…

  11. 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…