Azure / Azure/MachineLearningNotebooks
Minor Error in Documentation - Automated Machine Learning Continuous retraining using Pipelines and Time-Series TabularDataset
- Vorherrschende Sprache
- Jupyter Notebook
- Sterne
- 4.4k
- Forks
- 2.6k
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
In the Notebook, ["Automated Machine Learning Continuous retraining using Pipelines and Time-Series TabularDataset"](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/continuous-retraining/auto-ml-continuous-retraining.ipynb) there is a minor error, in the second last code section, referring to the scheduling of the Data-Ingestion Pipeline.
The provided code refers incorrectly to the **training_pipeline** rather than the **data_pipeline** used to retrieve daily NOAA weather data.
`pipeline_name = "DataIngestion-Pipeline-NOAAWeather"`
`published_pipeline = training_pipeline.publish(`
` name=pipeline_name, description="Pipeline that updates NOAAWeather Dataset"`
`)`
Should be:
`pipeline_name = "DataIngestion-Pipeline-NOAAWeather"`
`published_pipeline = data_pipeline.publish(`
` name=pipeline_name, description="Pipeline that updates NOAAWeather Dataset"`
`)`
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Bewertung
Dieses Issue wurde noch nicht bewertet.