Show / Hide Table of Contents

Class GoogleCloudAiplatformV1beta1SchemaTrainingjobDefinitionAutoMlTablesInputs

Inheritance
object
GoogleCloudAiplatformV1beta1SchemaTrainingjobDefinitionAutoMlTablesInputs
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Aiplatform.v1beta1.Data
Assembly: Google.Apis.Aiplatform.v1beta1.dll
Syntax
public class GoogleCloudAiplatformV1beta1SchemaTrainingjobDefinitionAutoMlTablesInputs : IDirectResponseSchema

Properties

AdditionalExperiments

Additional experiment flags for the Tables training pipeline.

Declaration
[JsonProperty("additionalExperiments")]
public virtual IList<string> AdditionalExperiments { get; set; }
Property Value
Type Description
IList<string>

DisableEarlyStopping

Use the entire training budget. This disables the early stopping feature. By default, the early stopping feature is enabled, which means that AutoML Tables might stop training before the entire training budget has been used.

Declaration
[JsonProperty("disableEarlyStopping")]
public virtual bool? DisableEarlyStopping { get; set; }
Property Value
Type Description
bool?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ExportEvaluatedDataItemsConfig

Configuration for exporting test set predictions to a BigQuery table. If this configuration is absent, then the export is not performed.

Declaration
[JsonProperty("exportEvaluatedDataItemsConfig")]
public virtual GoogleCloudAiplatformV1beta1SchemaTrainingjobDefinitionExportEvaluatedDataItemsConfig ExportEvaluatedDataItemsConfig { get; set; }
Property Value
Type Description
GoogleCloudAiplatformV1beta1SchemaTrainingjobDefinitionExportEvaluatedDataItemsConfig

OptimizationObjective

Objective function the model is optimizing towards. The training process creates a model that maximizes/minimizes the value of the objective function over the validation set. The supported optimization objectives depend on the prediction type. If the field is not set, a default objective function is used. classification (binary): "maximize-au-roc" (default) - Maximize the area under the receiver operating characteristic (ROC) curve. "minimize-log-loss" - Minimize log loss. "maximize-au-prc" - Maximize the area under the precision-recall curve. "maximize-precision-at-recall" - Maximize precision for a specified recall value. "maximize-recall-at-precision" - Maximize recall for a specified precision value. classification (multi-class): "minimize-log-loss" (default) - Minimize log loss. regression: "minimize-rmse" (default) - Minimize root-mean-squared error (RMSE). "minimize-mae" - Minimize mean-absolute error (MAE). "minimize-rmsle" - Minimize root-mean-squared log error (RMSLE).

Declaration
[JsonProperty("optimizationObjective")]
public virtual string OptimizationObjective { get; set; }
Property Value
Type Description
string

OptimizationObjectivePrecisionValue

Required when optimization_objective is "maximize-recall-at-precision". Must be between 0 and 1, inclusive.

Declaration
[JsonProperty("optimizationObjectivePrecisionValue")]
public virtual float? OptimizationObjectivePrecisionValue { get; set; }
Property Value
Type Description
float?

OptimizationObjectiveRecallValue

Required when optimization_objective is "maximize-precision-at-recall". Must be between 0 and 1, inclusive.

Declaration
[JsonProperty("optimizationObjectiveRecallValue")]
public virtual float? OptimizationObjectiveRecallValue { get; set; }
Property Value
Type Description
float?

PredictionType

The type of prediction the Model is to produce. "classification" - Predict one out of multiple target values is picked for each row. "regression" - Predict a value based on its relation to other values. This type is available only to columns that contain semantically numeric values, i.e. integers or floating point number, even if stored as e.g. strings.

Declaration
[JsonProperty("predictionType")]
public virtual string PredictionType { get; set; }
Property Value
Type Description
string

TargetColumn

The column name of the target column that the model is to predict.

Declaration
[JsonProperty("targetColumn")]
public virtual string TargetColumn { get; set; }
Property Value
Type Description
string

TrainBudgetMilliNodeHours

Required. The train budget of creating this model, expressed in milli node hours i.e. 1,000 value in this field means 1 node hour. The training cost of the model will not exceed this budget. The final cost will be attempted to be close to the budget, though may end up being (even) noticeably smaller - at the backend's discretion. This especially may happen when further model training ceases to provide any improvements. If the budget is set to a value known to be insufficient to train a model for the given dataset, the training won't be attempted and will error. The train budget must be between 1,000 and 72,000 milli node hours, inclusive.

Declaration
[JsonProperty("trainBudgetMilliNodeHours")]
public virtual long? TrainBudgetMilliNodeHours { get; set; }
Property Value
Type Description
long?

Transformations

Each transformation will apply transform function to given input column. And the result will be used for training. When creating transformation for BigQuery Struct column, the column should be flattened using "." as the delimiter.

Declaration
[JsonProperty("transformations")]
public virtual IList<GoogleCloudAiplatformV1beta1SchemaTrainingjobDefinitionAutoMlTablesInputsTransformation> Transformations { get; set; }
Property Value
Type Description
IList<GoogleCloudAiplatformV1beta1SchemaTrainingjobDefinitionAutoMlTablesInputsTransformation>

WeightColumnName

Column name that should be used as the weight column. Higher values in this column give more importance to the row during model training. The column must have numeric values between 0 and 10000 inclusively; 0 means the row is ignored for training. If weight column field is not set, then all rows are assumed to have equal weight of 1.

Declaration
[JsonProperty("weightColumnName")]
public virtual string WeightColumnName { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX