Elastica\Suggest\Phrase::setLinearInterpolationSmoothing PHP Method

setLinearInterpolationSmoothing() public method

public setLinearInterpolationSmoothing ( float $trigramLambda, float $bigramLambda, float $unigramLambda )
$trigramLambda float
$bigramLambda float
$unigramLambda float
    public function setLinearInterpolationSmoothing($trigramLambda, $bigramLambda, $unigramLambda)
    {
        return $this->setSmoothingModel('linear_interpolation', ['trigram_lambda' => $trigramLambda, 'bigram_lambda' => $bigramLambda, 'unigram_lambda' => $unigramLambda]);
    }