Skip to content

Commit bf86b1c

Browse files
author
Larry Franks
committed
fixing broken links
1 parent 639dc68 commit bf86b1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
7676
| `frequency` | string | The frequency at which the forecast generation is desired, for example daily, weekly, yearly, etc. <br>If it isn't specified or set to None, then its default value is inferred from the dataset time index. The user can set its value greater than dataset's inferred frequency, but not less than it. For example, if dataset's frequency is daily, it can take values like daily, weekly, monthly, but not hourly as hourly is less than daily(24 hours).<br> Refer to [pandas documentation](https://pandas.pydata.org/pandas-docs/stable/user_guide/timeseries.html#dateoffset-objects) for more information.| | `None` |
7777
| `time_series_id_column_names` | string or list(strings) | The names of columns in the data to be used to group data into multiple time series. If time_series_id_column_names is not defined or set to None, the Automated ML uses auto-detection logic to detect the columns.| | `None` |
7878
| `feature_lags` | string | Represents if user wants to generate lags automatically for the provided numeric features. The default is set to `auto`, meaning that Automated ML uses autocorrelation-based heuristics to automatically select lag orders and generate corresponding lag features for all numeric features. "None" means no lags are generated for any numeric features.| `'auto'`, `None` | `None` |
79-
| `country_or_region_for_holidays` | string | The country or region to be used to generate holiday features. These characters should be represented in ISO 3166 two-letter country/region codes, for example 'US' or 'GB'. The list of the ISO codes can be found here: https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes| | `None` |
79+
| `country_or_region_for_holidays` | string | The country or region to be used to generate holiday features. These characters should be represented in ISO 3166 two-letter country/region codes, for example 'US' or 'GB'. The list of the ISO codes can be found at [https://wikipedia.org/wiki/List_of_ISO_3166_country_codes](https://wikipedia.org/wiki/List_of_ISO_3166_country_codes). | `None` |
8080
| `cv_step_size` | string or integer | The number of periods between the origin_time of one CV fold and the next fold. For example, if it is set to 3 for daily data, the origin time for each fold is three days apart. If it set to None or not specified, then it's set to `auto` by default. If it is of integer type, minimum value it can take is 1 else it raises an error. | `auto`, [int] | `auto` |
8181
| `seasonality` | string or integer | The time series seasonality as an integer multiple of the series frequency. If seasonality is not specified, its value is set to `'auto'`, meaning it is inferred automatically by Automated ML. If this parameter is not set to `None`, the Automated ML assumes time series as non-seasonal, which is equivalent to setting it as integer value 1. | `'auto'`, [int] | `auto` |
8282
| `short_series_handling_config` | string | Represents how Automated ML should handle short time series if specified. It takes following values: <br><ul><li>`'auto'` : short series is padded if there are no long series, otherwise short series is dropped.</li><li>`'pad'`: all the short series is padded with zeros.</li><li>`'drop'`: all the short series is dropped.</li><li> `None`: the short series is not modified.</li><ul>| `'auto'`, `'pad'`, `'drop'`, `None` | `auto` |

articles/machine-learning/reference-yaml-component-pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The `az ml component` commands can be used for managing Azure Machine Learning c
6565

6666
## Examples
6767

68-
Examples are available in the [examples GitHub repository](https://github.com/Azure/azureml-examples/tree/lochen/pipeline-component-pup/cli/jobs/pipelines-with-components/pipeline_with_pipeline_component).
68+
Examples are available in the [examples GitHub repository](https://github.com/Azure/azureml-examples/tree/main/cli/jobs/pipelines-with-components/pipeline_with_pipeline_component).
6969

7070
## Next steps
7171

0 commit comments

Comments
 (0)