com.o19s.es.ltr.query.LtrRewritableQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-learning-to-rank Show documentation
Show all versions of elasticsearch-learning-to-rank Show documentation
Learing to Rank Query w/ RankLib Models
package com.o19s.es.ltr.query;
import com.o19s.es.ltr.ranker.LtrRanker;
import org.apache.lucene.search.Query;
import java.io.IOException;
import java.util.function.Supplier;
public interface LtrRewritableQuery {
/**
* Rewrite the query so that it holds the vectorSupplier
*/
Query ltrRewrite(Supplier vectorSuppler) throws IOException;
}