train_linear_regression_model
Train a linear regression model by specifying the output column. Automates data preprocessing, model training, and evaluation, returning the RMSE value for model accuracy.
Instructions
This function trains linear regression model.
Args: Takes input for output column name.
Returns: String which contains the RMSE value.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_column | Yes |
Input Schema (JSON Schema)
{
"properties": {
"output_column": {
"title": "Output Column",
"type": "string"
}
},
"required": [
"output_column"
],
"title": "train_linear_regression_modelArguments",
"type": "object"
}