最新版luence中求index tf值的实现

package utils;

import java.io.IOException;
import java.nio.file.Paths;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

import org.apache.lucene.document.Document;
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.IndexReaderContext;
import org.apache.lucene.index.LeafReader;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.index.MultiFields;
import org.apache.lucene.index.PostingsEnum;
import org.apache.lucene.index.Term;
import org.apache.lucene.index.Terms;
import org.apache.lucene.index.TermsEnum;
import org.apache.lucene.queryparser.ext.Extensions.Pair;
import org.apache.lucene.search.DocIdSetIterator;
import org.apache.lucene.search.similarities.TFIDFSimilarity;
import org.apache.lucene.store.Directory;
import org.apache.lucene.store.FSDirectory;
import org.apache.lucene.store.NIOFSDirectory;
import org.apache.lucene.util.BytesRef;
public class TF_IDF {
	String index="D:\\alia\\aila20-task-data\\aila20-task1\\dataset\\index_q";
	
	public List<List<Pair<String,Double>>> tfidf() {
		List<List<Pair<String,Double>>> ret=new ArrayList<>();
		
		try {
			Directory dir=new NIOFSDirectory(Paths.get(index));
			IndexReader ir=DirectoryReader.open(dir);
			for(int i=1;i<ir.maxDoc();i++) {
				List<Pair<String,Double>> newmap=new ArrayList<>();
				Terms terms=ir.getTermVector(i, "content");
				TermsEnum p=terms.iterator();
				BytesRef tmp=null;
				PostingsEnum posting=null;
				int k=0;
				while((tmp=p.next())!=null) {					
					posting=p.postings(posting,PostingsEnum.ALL);
					posting.nextDoc();
					newmap.add(new Pair<String, Double>(new String(tmp.bytes, tmp.offset, tmp.length), ((double)posting.freq()/terms.size())));
				}
				ret.add(newmap);
			}
			
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return ret;
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值