Hi,
I am trying to use "Latent Semantic Indexing " as the custom Similarity Algorithm in Elastic Search. What is the way I can do it? Does elastic Search provide any plugin architecture for this particular Algorithm?
Hi Elastic team,
I'm having the similar requirement, but not finding a way how to accommodate it.
Is the ranking module is pluggable?
Thanks,
Arun Ramachandran.
By default several similarities are available:
https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules-similarity.html#_available_similarities
If you want a new one, you need to write a plugin that defines your custom similarities. Though latent semantic indexing requires a lot of additional structures to score a document so you'll need to build these infos outside of ES and find a way to make them available in your similarity.
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.