Class Laplace
- java.lang.Object
-
- org.elasticsearch.search.suggest.phrase.SmoothingModel
-
- org.elasticsearch.search.suggest.phrase.Laplace
-
- All Implemented Interfaces:
NamedWriteable
,Writeable
,ToXContent
,ToXContentFragment
public final class Laplace extends SmoothingModel
An additive 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.Params
-
Nested 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 double
DEFAULT_LAPLACE_ALPHA
Default alpha parameter for laplace smoothingstatic java.lang.String
NAME
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description Laplace(double alpha)
Creates a Laplace smoothing model.Laplace(StreamInput in)
Read from a stream.
-
Method Summary
Modifier and Type Method Description WordScorer.WordScorerFactory
buildWordScorerFactory()
protected boolean
doEquals(SmoothingModel other)
subtype specific implementation of "equals".protected int
doHashCode()
static SmoothingModel
fromXContent(XContentParser parser)
double
getAlpha()
java.lang.String
getWriteableName()
Returns the name of the writeable objectprotected XContentBuilder
innerToXContent(XContentBuilder builder, ToXContent.Params params)
void
writeTo(StreamOutput out)
Write this into the StreamOutput.-
Methods inherited from class org.elasticsearch.search.suggest.phrase.SmoothingModel
equals, hashCode, toXContent
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
DEFAULT_LAPLACE_ALPHA
public static final double DEFAULT_LAPLACE_ALPHA
Default alpha parameter for laplace smoothing- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Laplace
public Laplace(double alpha)
Creates a Laplace smoothing model.
-
Laplace
public Laplace(StreamInput in) throws java.io.IOException
Read from a stream.- Throws:
java.io.IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Writeable
Write this into the StreamOutput.- Throws:
java.io.IOException
-
getAlpha
public double getAlpha()
- Returns:
- the laplace model alpha parameter
-
innerToXContent
protected XContentBuilder innerToXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
innerToXContent
in classSmoothingModel
- Throws:
java.io.IOException
-
getWriteableName
public java.lang.String getWriteableName()
Description copied from interface:NamedWriteable
Returns the name of the writeable object
-
doEquals
protected boolean doEquals(SmoothingModel other)
Description copied from class:SmoothingModel
subtype specific implementation of "equals".- Specified by:
doEquals
in classSmoothingModel
-
doHashCode
protected int doHashCode()
- Specified by:
doHashCode
in classSmoothingModel
-
fromXContent
public static SmoothingModel fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
buildWordScorerFactory
public WordScorer.WordScorerFactory buildWordScorerFactory()
- Specified by:
buildWordScorerFactory
in classSmoothingModel
-
-