Uses of Class
org.elasticsearch.search.suggest.phrase.SmoothingModel
-
Packages that use SmoothingModel Package Description org.elasticsearch.search.suggest.phrase -
-
Uses of SmoothingModel in org.elasticsearch.search.suggest.phrase
Subclasses of SmoothingModel in org.elasticsearch.search.suggest.phrase Modifier and Type Class Description classLaplaceAn additive smoothing model.classLinearInterpolationLinear interpolation smoothing model.classStupidBackoffA "stupid-backoff" smoothing model similar to Katz's Backoff.Methods in org.elasticsearch.search.suggest.phrase that return SmoothingModel Modifier and Type Method Description static SmoothingModelLaplace. fromXContent(XContentParser parser)static SmoothingModelSmoothingModel. fromXContent(XContentParser parser)static SmoothingModelStupidBackoff. fromXContent(XContentParser parser)SmoothingModelPhraseSuggestionBuilder. smoothingModel()Gets theSmoothingModelMethods in org.elasticsearch.search.suggest.phrase with parameters of type SmoothingModel Modifier and Type Method Description protected booleanLaplace. doEquals(SmoothingModel other)protected booleanLinearInterpolation. doEquals(SmoothingModel other)protected abstract booleanSmoothingModel. doEquals(SmoothingModel other)subtype specific implementation of "equals".protected booleanStupidBackoff. doEquals(SmoothingModel other)PhraseSuggestionBuilderPhraseSuggestionBuilder. smoothingModel(SmoothingModel model)Sets an explicit smoothing model used for this suggester.
-