semantic-search icon indicating copy to clipboard operation
semantic-search copied to clipboard

Faster similarity retrieval method?

Open zhangyanbo2007 opened this issue 6 years ago • 1 comments

I now have 140000 images to do similarity retrieval, annoy measured to about 10s, would like to ask if there is a faster retrieval method?

zhangyanbo2007 avatar Jan 24 '19 03:01 zhangyanbo2007

You might be using a lot of features, ANNOY works better if the number of features is less than 100, Since the number of images is very high, you can try optimizing by reducing the vector dimensions. From summary of Spotify ANNoy features:- Works better if you don't have too many dimensions (like <100) but seems to perform surprisingly well even up to 1,000 dimensions.

navneetkrc avatar Mar 16 '19 07:03 navneetkrc