All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.api.ModelMetricsRegressionV3 Maven / Gradle / Ivy

package water.api;

import hex.ModelMetricsRegression;

public class ModelMetricsRegressionV3> extends ModelMetricsBase {
  @API(help="The R^2 for this scoring run.", direction=API.Direction.OUTPUT)
  public double r2;

  @API(help="The mean residual deviance for this scoring run.", direction=API.Direction.OUTPUT)
  public double mean_residual_deviance;

  @Override public S fillFromImpl(ModelMetricsRegression modelMetrics) {
    super.fillFromImpl(modelMetrics);
    r2 = modelMetrics.r2();
    return (S) this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy