public class ANOVAGLMParametersV3 extends ModelParametersSchemaV3
| Modifier and Type | Field and Description |
|---|---|
double[] |
alpha
Distribution of regularization between the L1 (Lasso) and L2 (Ridge) penalties.
|
boolean |
balanceClasses
Balance training data class counts via over/under-sampling (for imbalanced data).
|
float[] |
classSamplingFactors
Desired over/under-sampling ratios per class (in lexicographic order).
|
boolean |
computePValues
Request p-values computation, p-values work only with IRLSM solver and no regularization
|
boolean |
earlyStopping
Stop early when there is no more relative improvement on train or validation (if provided).
|
GLMFamily |
family
Family.
|
int |
highestInteractionTerm
Limit the number of interaction terms, if 2 means interaction between 2 columns only, 3 for three columns and so
on...
|
double[] |
lambda
Regularization strength
|
boolean |
lambdaSearch
Use lambda search starting at lambda max, given lambda is then interpreted as lambda min
|
GLMLink |
link
Link function.
|
float |
maxAfterBalanceSize
Maximum relative size of the training data after balancing class counts (can be less than 1.0).
|
int |
maxIterations
Maximum number of iterations
|
GLMMissingValuesHandling |
missingValuesHandling
Handling of missing values.
|
boolean |
nonNegative
Restrict coefficients (not intercept) to be non-negative
|
int |
nparallelism
Number of models to build in parallel.
|
FrameKeyV3 |
plugValues
Plug Values (a single row frame containing values that will be used to impute missing values of the
training/validation frame, use with conjunction missing_values_handling = PlugValues)
|
double |
prior
Prior probability for y==1.
|
boolean |
saveTransformedFramekeys
true to save the keys of transformed predictors and interaction column.
|
long |
seed
Seed for pseudo random number generator (if applicable)
|
GLMSolver |
solver
AUTO will set the solver based on given data and the other parameters.
|
boolean |
standardize
Standardize numeric columns to have zero mean and unit variance
|
double |
theta
Theta
|
double |
tweedieLinkPower
Tweedie link power
|
double |
tweedieVariancePower
Tweedie variance power
|
int |
type
Refer to the SS type 1, 2, 3, or 4.
|
aucType, categoricalEncoding, checkpoint, customDistributionFunc, customMetricFunc, distribution, exportCheckpointsDir, foldAssignment, foldColumn, gainsliftBins, huberAlpha, ignoreConstCols, ignoredColumns, keepCrossValidationFoldAssignment, keepCrossValidationModels, keepCrossValidationPredictions, maxCategoricalLevels, maxRuntimeSecs, modelId, nfolds, offsetColumn, parallelizeCrossValidation, quantileAlpha, responseColumn, scoreEachIteration, stoppingMetric, stoppingRounds, stoppingTolerance, trainingFrame, tweediePower, validationFrame, weightsColumn| Constructor and Description |
|---|
ANOVAGLMParametersV3()
Public constructor
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Return the contents of this object as a JSON String.
|
public long seed
public boolean standardize
public GLMFamily family
@SerializedName(value="tweedie_variance_power") public double tweedieVariancePower
@SerializedName(value="tweedie_link_power") public double tweedieLinkPower
public double theta
public double[] alpha
public double[] lambda
@SerializedName(value="lambda_search") public boolean lambdaSearch
public GLMSolver solver
@SerializedName(value="missing_values_handling") public GLMMissingValuesHandling missingValuesHandling
@SerializedName(value="plug_values") public FrameKeyV3 plugValues
@SerializedName(value="non_negative") public boolean nonNegative
@SerializedName(value="compute_p_values") public boolean computePValues
@SerializedName(value="max_iterations") public int maxIterations
public GLMLink link
public double prior
@SerializedName(value="balance_classes") public boolean balanceClasses
@SerializedName(value="class_sampling_factors") public float[] classSamplingFactors
@SerializedName(value="max_after_balance_size") public float maxAfterBalanceSize
@SerializedName(value="highest_interaction_term") public int highestInteractionTerm
public int type
@SerializedName(value="early_stopping") public boolean earlyStopping
@SerializedName(value="save_transformed_framekeys") public boolean saveTransformedFramekeys
public int nparallelism
public java.lang.String toString()
toString in class ModelParametersSchemaV3