Class LinearInterpolation
java.lang.Object
org.elasticsearch.search.suggest.phrase.SmoothingModel
org.elasticsearch.search.suggest.phrase.LinearInterpolation
- All Implemented Interfaces:
NamedWriteable,Writeable,ToXContent,ToXContentFragment
public final class LinearInterpolation extends SmoothingModel
Linear interpolation smoothing model.
See N-Gram Smoothing for details.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields Modifier and Type Field Description static java.lang.StringNAME -
Constructor Summary
Constructors Constructor Description LinearInterpolation(double trigramLambda, double bigramLambda, double unigramLambda)Creates a linear interpolation smoothing model.LinearInterpolation(StreamInput in)Read from a stream. -
Method Summary
Modifier and Type Method Description WordScorer.WordScorerFactorybuildWordScorerFactory()protected booleandoEquals(SmoothingModel other)subtype specific implementation of "equals".protected intdoHashCode()static LinearInterpolationfromXContent(XContentParser parser)doublegetBigramLambda()doublegetTrigramLambda()doublegetUnigramLambda()java.lang.StringgetWriteableName()Returns the name of the writeable objectprotected XContentBuilderinnerToXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.Methods inherited from class org.elasticsearch.search.suggest.phrase.SmoothingModel
equals, hashCode, toXContent
-
Field Details
-
NAME
public static final java.lang.String NAME- See Also:
- Constant Field Values
-
-
Constructor Details
-
LinearInterpolation
public LinearInterpolation(double trigramLambda, double bigramLambda, double unigramLambda)Creates a linear interpolation smoothing model. Note: the lambdas must sum up to one.- Parameters:
trigramLambda- the trigram lambdabigramLambda- the bigram lambdaunigramLambda- the unigram lambda
-
LinearInterpolation
Read from a stream.- Throws:
java.io.IOException
-
-
Method Details
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Throws:
java.io.IOException
-
getTrigramLambda
public double getTrigramLambda() -
getBigramLambda
public double getBigramLambda() -
getUnigramLambda
public double getUnigramLambda() -
innerToXContent
protected XContentBuilder innerToXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
innerToXContentin classSmoothingModel- Throws:
java.io.IOException
-
getWriteableName
public java.lang.String getWriteableName()Description copied from interface:NamedWriteableReturns the name of the writeable object -
doEquals
Description copied from class:SmoothingModelsubtype specific implementation of "equals".- Specified by:
doEqualsin classSmoothingModel
-
doHashCode
protected int doHashCode()- Specified by:
doHashCodein classSmoothingModel
-
fromXContent
- Throws:
java.io.IOException
-
buildWordScorerFactory
- Specified by:
buildWordScorerFactoryin classSmoothingModel
-