예제 #1
0
파일: BM25F2.cs 프로젝트: zbxzc35/BoostTree
 public override bool SetFeatureNames(string[] FeatureNames, string featName)
 {
     this.featureTbl = new FeatureTbl(FeatureNames);
     return true;
 }
예제 #2
0
파일: BM25F2.cs 프로젝트: zbxzc35/BoostTree
 public BM25F2Transform(BM25F2Transform bm25F2Transform)
 {
     this.dblSaturation = bm25F2Transform.dblSaturation;
     this.bm25Streams = bm25F2Transform.bm25Streams; ;
     this.featureTbl = bm25F2Transform.featureTbl; ;
 }