Better or Not combine Search Engine and Recommend System?

一世执手 提交于 2020-01-05 10:52:37

问题


In our project, we use search engine, but the result need to be ranked based on each user's interest, similar to recommendation according to users' keyword.

If we separate the two system, it would cost a lot time.

Is there a better way to combine Search Engine and Recommend System together?

Or is there a simple way to customize my ranking strategy to achieve this?


回答1:


This is what we were trying to do in our project as well. There are two things while solving this problem - Relevancy vs Personalization. You should look at how much of personalization is ruining the relevancy of the query. For example, if I'm suggesting news, then it makes sense to suggest based on location. I hope you already would have analyzed the use cases.

The way that I followed was - after getting the results on the search, then re-rank results to give personal suggestions. For example if I was searching for a specific algorithm to code, then getting the result set and re-ranking on my preference, lets say on, Java (based on my previous history) will make sense. In any case relevancy is of utmost importance and then we fit in user's preferences.

Again the use case is important, if this was for a news search, then directly querying and retrieving on location is best way to do it.



来源:https://stackoverflow.com/questions/29844372/better-or-not-combine-search-engine-and-recommend-system

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!