博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【一】自定义评分
阅读量:5292 次
发布时间:2019-06-14

本文共 2770 字,大约阅读时间需要 9 分钟。

CustomScoreQuery类
 
构造函数
 
Constructor Summary
( subQuery) 
          Create a CustomScoreQuery over input subQuery.
( subQuery, ... scoringQueries) 
          Create a CustomScoreQuery over input subQuery and a .
( subQuery,  scoringQuery) 
          Create a CustomScoreQuery over input subQuery and a .
 
FunctionQuery,FunctionQuery(ValueSource valueSource),自定义评分query;
ValueSource,读取某个域的评分,ValueSource valueSource = new IntFieldSource("score");读取Score域的评分;
 
通过重写getCustomScoreProvider(AtomicReaderContext)修改评分计算方法
getCustomScoreProvider默认计算方法
super.getCustomScoreProvider(reader):原有评分*传入评分域评分
 
CustomScoreProvider类
 
重写 customScore(
int doc, 
float subQueryScore, 
float valSrcScore)方法,
  1. doc是文件编号
  2. subQueryScore是原有评分值
  3. valSrcScore是传入域的评分值
在这个方法里,可以编写自己的算法,操作两个评分值
 
 

1、原有评分*传入的评分域打分

 
 
1 Query subquery = new TermQuery(new Term("content", "java")); 2  //评分域 3 ValueSource valueSource = new IntFieldSource("score"); 4 FunctionQuery fq = new FunctionQuery(valueSource );//自定义评分query 5 //自定义评分query 6 MyCustomScoreQuery myCustomScoreQuery = new MyCustomScoreQuery(subquery ,fq ); 7  8 private class MyCustomScoreQuery extends CustomScoreQuery { 9 10               public MyCustomScoreQuery(Query subQuery , FunctionQuery fq) {11                      super(subQuery ,fq ); 12 // TODO Auto-generated constructor stub 13  } 14 15 protected CustomScoreProvider getCustomScoreProvider(AtomicReaderContext reader ) throws IOException { 16 return super .getCustomScoreProvider(reader); 17  } 18 }

 

2、原有评分/传入评分域打分
 
1 private class MyCustomScoreQuery extends CustomScoreQuery { 2   3      public MyCustomScoreQuery(Query subQuery , FunctionQuery fq) { 4                      super(subQuery ,fq ); 5                      // TODO Auto-generated constructor stub 6              } 7               8               protected CustomScoreProvider getCustomScoreProvider(AtomicReaderContext reader ) throws IOException { 9                      //return super.getCustomScoreProvider(reader);10                      return new MyCustomScoreProvider(reader); 11  } 12  } 13 14 private class MyCustomScoreProvider extends CustomScoreProvider { 15 public MyCustomScoreProvider(AtomicReaderContext reader){ 16 super(reader ); 17  } 18 19 public float customScore(int doc, float subQueryScore, float valSrcScore) throws IOException{ 20 //return super.customScore(doc, subQueryScore, valSrcScore); 21 return subQueryScore /valSrcScore; 22  } 23 }

 

 
3、根据文件名评分,指定的特殊文件名获得更高的评分比重
 
[1]从reader的缓存中获得文件名
Lucene4.0前,Sring[] filenames = FieldCache. DEFAULT.getString(  "filename" );
Lucene4.0后,没有了getString,getByte也变成了 Deprecate。
 
所以采用了下面的方法获取StringField
Binaryvalues filenames = FieldCache.
DEFAULT.getTerms( atomicReader, "filename" , 
false);
 
[2]针对每个文件名进行操作
String filename = filenames.get(doc ).utf8ToString();

转载于:https://www.cnblogs.com/Sheeeeep/p/4648792.html

你可能感兴趣的文章
第二周
查看>>
断言简介
查看>>
Node.js 入门:Express + Mongoose 基础使用
查看>>
plsql使用,为什么可以能看见其他用户的表
查看>>
一步步教你轻松学奇异值分解SVD降维算法
查看>>
Scripting Java #3:Groovy与invokedynamic
查看>>
2014-04-21-阿里巴巴暑期实习-后台研发-二面经验
查看>>
数据结构中线性表的基本操作-合并两个线性表-依照元素升序排列
查看>>
使用pager进行分页
查看>>
吐医疗器械研发可配置性需求的槽点
查看>>
UVA - 1592 Database
查看>>
机器翻译评价指标 — BLEU算法
查看>>
机器学习基石(9)--Linear Regression
查看>>
Min Stack
查看>>
从LazyPhp说起
查看>>
Fine Uploader文件上传组件
查看>>
Spring Boot与Spring的区别
查看>>
查看linux 之mysql 是否安装的几种方法
查看>>
javascript中的传递参数
查看>>
objective-c overview(二)
查看>>