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

org.elasticsearch.index.similarity.IBSimilarityProvider Maven / Gradle / Ivy

There is a newer version: 8.13.3
Show newest version
/*
 * Licensed to Elasticsearch under one or more contributor
 * license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright
 * ownership. Elasticsearch licenses this file to you 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 org.elasticsearch.index.similarity;

import com.google.common.collect.ImmutableMap;
import org.apache.lucene.search.similarities.*;
import org.elasticsearch.ElasticsearchIllegalArgumentException;
import org.elasticsearch.common.collect.MapBuilder;
import org.elasticsearch.common.inject.Inject;
import org.elasticsearch.common.inject.assistedinject.Assisted;
import org.elasticsearch.common.settings.Settings;

/**
 * {@link SimilarityProvider} for {@link IBSimilarity}.
 * 

* Configuration options available: *

    *
  • distribution
  • *
  • lambda
  • *
  • normalization
  • *
* @see IBSimilarity For more information about configuration */ public class IBSimilarityProvider extends AbstractSimilarityProvider { private static final ImmutableMap DISTRIBUTION_CACHE; private static final ImmutableMap LAMBDA_CACHE; static { MapBuilder distributions = MapBuilder.newMapBuilder(); distributions.put("ll", new DistributionLL()); distributions.put("spl", new DistributionSPL()); DISTRIBUTION_CACHE = distributions.immutableMap(); MapBuilder lamdas = MapBuilder.newMapBuilder(); lamdas.put("df", new LambdaDF()); lamdas.put("ttf", new LambdaTTF()); LAMBDA_CACHE = lamdas.immutableMap(); } private final IBSimilarity similarity; @Inject public IBSimilarityProvider(@Assisted String name, @Assisted Settings settings) { super(name); Distribution distribution = parseDistribution(settings); Lambda lambda = parseLambda(settings); Normalization normalization = parseNormalization(settings); this.similarity = new IBSimilarity(distribution, lambda, normalization); } /** * Parses the given Settings and creates the appropriate {@link Distribution} * * @param settings Settings to parse * @return {@link Normalization} referred to in the Settings */ protected Distribution parseDistribution(Settings settings) { String rawDistribution = settings.get("distribution"); Distribution distribution = DISTRIBUTION_CACHE.get(rawDistribution); if (distribution == null) { throw new ElasticsearchIllegalArgumentException("Unsupported Distribution [" + rawDistribution + "]"); } return distribution; } /** * Parses the given Settings and creates the appropriate {@link Lambda} * * @param settings Settings to parse * @return {@link Normalization} referred to in the Settings */ protected Lambda parseLambda(Settings settings) { String rawLambda = settings.get("lambda"); Lambda lambda = LAMBDA_CACHE.get(rawLambda); if (lambda == null) { throw new ElasticsearchIllegalArgumentException("Unsupported Lambda [" + rawLambda + "]"); } return lambda; } /** * {@inheritDoc} */ @Override public Similarity get() { return similarity; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy