All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.o19s.es.ltr.ranker.LtrRanker Maven / Gradle / Ivy

There is a newer version: 6.8.0
Show newest version
/*
 * Copyright [2017] Wikimedia Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.o19s.es.ltr.ranker;

import org.elasticsearch.common.Nullable;

/**
 * A ranker used by {@link com.o19s.es.ltr.query.RankerQuery}
 * to compute a score based on a set of feature scores.
 */
public interface LtrRanker {

    /**
     * LtrRanker name
     */
    String name();

    /**
     * Data point implementation used by this ranker
     * A data point is used to store feature scores.
     * A single instance will be created for every Scorer.
     * The implementation does not have to be thread-safe and meant
     * to be reused.
     * The ranker must always provide a new instance of the data point when this method is called with null.
     * @param reuse allows Ranker to reuse a feature vector instance
     */
    FeatureVector newFeatureVector(@Nullable FeatureVector reuse);

    /**
     * Score the data point.
     * At this point all feature scores are set.
     * features that did not match are set with a score to 0
     */
    float score(FeatureVector point);

    /**
     * A FeatureVector used to store individual feature scores
     */
    interface FeatureVector {
        /**
         * Set the feature score.
         */
        void setFeatureScore(int featureId, float score);

        /**
         * Get the feature score
         */
        float getFeatureScore(int featureId);

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy