Package it.unimi.di.big.mg4j.search.score

Examples of it.unimi.di.big.mg4j.search.score.BM25Scorer


        return String.format("BM25(b=%f,k1=%f)", b, k1);
    }

    @Override
    public void init(DocumentCollection collection, IndexConfiguration index) throws Exception {
        scorer = new BM25Scorer(k1, b);
        super.init(collection, index);
    }
View Full Code Here

TOP

Related Classes of it.unimi.di.big.mg4j.search.score.BM25Scorer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.