TableVertical interface
Abstract class for AutoML tasks that use table dataset as input - such as Classification/Regression/Forecasting.
Properties
cv |
Columns to use for CVSplit data. |
featurization |
Featurization inputs needed for AutoML job. |
limit |
Execution constraints for AutoMLJob. |
n |
Number of cross validation folds to be applied on training dataset when validation dataset is not provided. |
test |
Test data input. |
test |
The fraction of test dataset that needs to be set aside for validation purpose. Values between (0.0 , 1.0) Applied when validation dataset is not provided. |
validation |
Validation data inputs. |
validation |
The fraction of training dataset that needs to be set aside for validation purpose. Values between (0.0 , 1.0) Applied when validation dataset is not provided. |
weight |
The name of the sample weight column. Automated ML supports a weighted column as an input, causing rows in the data to be weighted up or down. |
Property Details
cvSplitColumnNames
Columns to use for CVSplit data.
cvSplitColumnNames?: string[]
Property Value
string[]
featurizationSettings
Featurization inputs needed for AutoML job.
featurizationSettings?: TableVerticalFeaturizationSettings
Property Value
limitSettings
Execution constraints for AutoMLJob.
limitSettings?: TableVerticalLimitSettings
Property Value
nCrossValidations
Number of cross validation folds to be applied on training dataset when validation dataset is not provided.
nCrossValidations?: NCrossValidationsUnion
Property Value
testData
testDataSize
The fraction of test dataset that needs to be set aside for validation purpose. Values between (0.0 , 1.0) Applied when validation dataset is not provided.
testDataSize?: number
Property Value
number
validationData
validationDataSize
The fraction of training dataset that needs to be set aside for validation purpose. Values between (0.0 , 1.0) Applied when validation dataset is not provided.
validationDataSize?: number
Property Value
number
weightColumnName
The name of the sample weight column. Automated ML supports a weighted column as an input, causing rows in the data to be weighted up or down.
weightColumnName?: string
Property Value
string