What is the easiest way to implement terms association mining in Solr?

后端 未结 3 845
臣服心动
臣服心动 2021-02-05 20:57

Association mining seems to give good results for retrieving related terms in text corpora. There are several works on this topic including wel

3条回答
  •  南方客
    南方客 (楼主)
    2021-02-05 21:53

    You can get the count of occurrences of the current term in found document in the following query:

    http://ip:port/solr/someinstance/select?defType=func&fl=termfreq(field,xxx),*&fq={!frange l=1}termfreq(field,xxx)&indent=on&q=termfreq(field,xxx)&sort=termfreq(field,xxx) desc&wt=json
    

提交回复
热议问题