RegressionResponse

data class RegressionResponse(val cvSplitColumnNames: List<String>? = null, val featurizationSettings: TableVerticalFeaturizationSettingsResponse? = null, val limitSettings: TableVerticalLimitSettingsResponse? = null, val logVerbosity: String? = null, val nCrossValidations: Either<AutoNCrossValidationsResponse, CustomNCrossValidationsResponse>? = null, val primaryMetric: String? = null, val targetColumnName: String? = null, val taskType: String, val testData: MLTableJobInputResponse? = null, val testDataSize: Double? = null, val trainingData: MLTableJobInputResponse, val trainingSettings: RegressionTrainingSettingsResponse? = null, val validationData: MLTableJobInputResponse? = null, val validationDataSize: Double? = null, val weightColumnName: String? = null)

Regression task in AutoML Table vertical.

Constructors

Link copied to clipboard
constructor(cvSplitColumnNames: List<String>? = null, featurizationSettings: TableVerticalFeaturizationSettingsResponse? = null, limitSettings: TableVerticalLimitSettingsResponse? = null, logVerbosity: String? = null, nCrossValidations: Either<AutoNCrossValidationsResponse, CustomNCrossValidationsResponse>? = null, primaryMetric: String? = null, targetColumnName: String? = null, taskType: String, testData: MLTableJobInputResponse? = null, testDataSize: Double? = null, trainingData: MLTableJobInputResponse, trainingSettings: RegressionTrainingSettingsResponse? = null, validationData: MLTableJobInputResponse? = null, validationDataSize: Double? = null, weightColumnName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Columns to use for CVSplit data.

Link copied to clipboard

Featurization inputs needed for AutoML job.

Link copied to clipboard

Execution constraints for AutoMLJob.

Link copied to clipboard
val logVerbosity: String? = null

Log verbosity for the job.

Link copied to clipboard

Number of cross validation folds to be applied on training dataset when validation dataset is not provided.

Link copied to clipboard
val primaryMetric: String? = null

Primary metric for regression task.

Link copied to clipboard

Target column name: This is prediction values column. Also known as label column name in context of classification tasks.

Link copied to clipboard

AutoMLJob Task type. Expected value is 'Regression'.

Link copied to clipboard

Test data input.

Link copied to clipboard
val testDataSize: Double? = null

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.

Link copied to clipboard

Required Training data input.

Link copied to clipboard

Inputs for training phase for an AutoML Job.

Link copied to clipboard

Validation data inputs.

Link copied to clipboard

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.

Link copied to clipboard

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.