Skip to content

Commit 4a8e557

Browse files
authored
Update reference-automated-ml-forecasting.md
1 parent 040a16e commit 4a8e557

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/machine-learning/reference-automated-ml-forecasting.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
3030
| Key | Type | Description | Allowed values | Default value |
3131
| --- | ---- | ----------- | -------------- | ------------- |
3232
| `$schema` | string | The location/url to load the YAML schema.<br>If the user uses the Azure Machine Learning VS Code extension to author the YAML file, including `$schema` at the top of the file enables the user to invoke schema and resource completions. | | |
33-
| `compute` | string | **Required.** <br>The name of the AML compute infrastructure to execute the job on. <br> The compute can be either a reference to an existing compute machine in the workspace <br>*Note:* jobs in pipeline don't support 'local' as `compute`. The 'local' here means that compute instance created in user's AzureML Studio workspace. | 1. pattern `[^azureml:<compute_name>]` to use existing compute,<br>2.`'local'` to use local execution | `'local'` |
33+
| `compute` | string | **Required.** <br>The name of the AML compute infrastructure to execute the job on. <br> The compute can be either a reference to an existing compute machine in the workspace <br>*Note:* jobs in pipeline don't support 'local' as `compute`. The 'local' here means that compute instance created in user's Azure Machine Learning Studio workspace. | 1. pattern `[^azureml:<compute_name>]` to use existing compute,<br>2.`'local'` to use local execution | `'local'` |
3434
| `limits` | object | Represents a dictionary object consisting of limit configurations of the Automated ML tabular job.<br>The key is name for the limit within the context of the job and the value is limit value. See [limits](#limits) to find out the properties of this object.| | |
3535
| `name` | string | The name of the submitted Automated ML job.<br>It must be unique across all jobs in the workspace. If not specified, Azure Machine Learning autogenerates a GUID for the name. | | |
3636
| `description` | string | The description of the Automated ML job. | | |
3737
| `display_name` | string | The name of the job that user wants to display in the studio UI. It can be non-unique within the workspace. If it's omitted, Azure Machine Learning autogenerates a human-readable adjective-noun identifier for the display name. | | |
3838
| `experiment_name` | string | The name of the experiment.<br>Experiments are records of your ML training jobs on Azure. Experiments contain the results of your runs, along with logs, charts, and graphs. Each job's run record is organized under the corresponding experiment in the studio's "Experiments" tab. | | Name of the working directory in which it was created|
3939
| `environment_variables` | object | A dictionary object of environment variables to set on the process where the command is being executed. | | |
4040
| `outputs` | object | Represents a dictionary of output configurations of the job. The key is a name for the output within the context of the job and the value is the output configuration. See [job output](#job-outputs) to find out properties of this object.| | |
41-
| `log_files` | object | A dictionary object containing logs of AutoML job execution | | |
41+
| `log_files` | object | A dictionary object containing logs of an Automated ML job execution | | |
4242
| `log_verbosity` | string | The level of log verbosity for writing to the log file.<br>The acceptable values are defined in the Python [logging library](https://docs.python.org/3/library/logging.html).| `'not_set'`, `'debug'`, `'info'`, `'warning'`, `'error'`, `'critical'` | `'info'` |
4343
| `type` | const | **Required.** <br>The type of job. | `automl` | `automl` |
44-
| `task` | const | **Required.** <br>The type of AutoML task to execute.| `forecasting` | `forecasting` |
45-
| `target_column_name` | string | **Required.** <br>Represents the name of the column to be forecasted. The AutoMl job raises an error if not specified.| | |
44+
| `task` | const | **Required.** <br>The type of Automated ML task to execute.| `forecasting` | `forecasting` |
45+
| `target_column_name` | string | **Required.** <br>Represents the name of the column to be forecasted. The Automated ML job raises an error if not specified.| | |
4646
| `featurization` | object | A dictionary object defining the configuration of custom featurization. In case it isn't created, the Automated ML config applies auto featurization. See [featurization](#featurization) to see the properties of this object. | | |
4747
| `forecasting` | object | A dictionary object defining the settings of forecasting job. See [forecasting](#forecasting) to find out the properties of this object.| | |
4848
| `n_cross_validations` | string or integer | The number of cross validations to perform during model/pipeline selection if `validation_data` isn't specified.<br>In case both `validation_data` and this parameter isn't provided or set to `None`, then Automated ML job set it to `auto` by default. In case `distributed_featurization` is enabled and `validation_data` isn't specified, then it's set to 2 by default. | `'auto'`, [int] | `None` |
@@ -141,13 +141,13 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
141141

142142

143143

144-
### How to run AutoML forecasting job via CLI
144+
### How to run forecasting job via CLI
145145
```
146146
az ml job create --file [YOUR_CLI_YAML_FILE] --workspace-name [YOUR_AZURE_WORKSPACE] --resource-group [YOUR_AZURE_RESOURCE_GROUP] --subscription [YOUR_AZURE_SUBSCRIPTION]
147147
```
148148

149149
### Quick links for further reference:
150150
1. [Install and use the CLI (v2)](how-to-configure-cli.md)
151-
2. [How to run AutoML job via CLI]()
151+
2. [How to run an Automated ML job via CLI]()
152152
2. [How to auto train forecasts](./how-to-auto-train-forecast.md)
153153
3. CLI Forecasting examples:<br><ul><li>[Orange Juice Sale Forecasting](https://github.com/Azure/azureml-examples/tree/main/cli/jobs/automl-standalone-jobs/cli-automl-forecasting-orange-juice-sales)</li><li>[Energy Demand Forecasting](https://github.com/Azure/azureml-examples/tree/main/cli/jobs/automl-standalone-jobs/cli-automl-forecasting-task-energy-demand)</li><li>[Bike Share Demand Forecasting](https://github.com/Azure/azureml-examples/tree/main/cli/jobs/automl-standalone-jobs/cli-automl-forecasting-bike-share)</li><li>[GitHub Daily Active Users Forecast](https://github.com/Azure/azureml-examples/tree/main/cli/jobs/automl-standalone-jobs/cli-automl-forecasting-task-github-dau)

0 commit comments

Comments
 (0)