predictedValue = $predictedValue; } /** * @return float */ public function getPredictedValue() { return $this->predictedValue; } /** * The actual target value for a row in the dataset. * * @param float $trueValue */ public function setTrueValue($trueValue) { $this->trueValue = $trueValue; } /** * @return float */ public function getTrueValue() { return $this->trueValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(XPSRegressionMetricsEntry::class, 'Google_Service_CloudNaturalLanguage_XPSRegressionMetricsEntry');