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

hex.schemas.GLMRegularizationPathV3 Maven / Gradle / Ivy

There is a newer version: 3.46.0.6
Show newest version
package hex.schemas;

import hex.glm.GLMModel;
import water.api.API;
import water.api.schemas3.KeyV3;
import water.api.schemas3.SchemaV3;

/**
 */
public class GLMRegularizationPathV3  extends SchemaV3{
  @API(help="source model", required = true, direction = API.Direction.INPUT)
  public KeyV3.ModelKeyV3 model;
  @API(help="Computed lambda values")
  public double [] lambdas;
  @API(help="alpha values used in building submodels")
  public double [] alphas;
  @API(help="explained deviance on the training set")
  public double [] explained_deviance_train;
  @API(help="explained deviance on the validation set")
  public double [] explained_deviance_valid;
  @API(help="coefficients for all lambdas")
  public double [][] coefficients;
  @API(help="standardized coefficients for all lambdas")
  public double [][] coefficients_std;
  @API(help="coefficient names")
  public String [] coefficient_names;
  @API(help="z-values")
  public double [][] z_values;
  @API(help="p-values")
  public double [][] p_values;
  @API(help="standard error")
  public double [][] std_errs;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy