简体   繁体   中英

Best models to build Image recommendation System in python deep learning

I have explored about techniques to build Image Recommendation system with Deep Learning models, which it has to search in 100k images to find the top similar ones for recommendation on the given input image, I need the simple, best and reliable implementation references.

I tried with VGG-19 model didn't get expected results, not aware of other techniques.

There is a simpler method , which is similar to word embeddings. If we find an expressive vector representation, or embedding for images, we can then calculate their similarity by looking at how close their vectors are to each other.

In addition, if we calculate these vectors for all images in our database ahead of time, this approach is both fast (one forward pass, and an efficient similarity search), and scalable.

Annoy is one of the libraries that implement fast solutions.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM