You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/v1/azure-machine-learning-release-notes.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -495,7 +495,7 @@ This breaking change comes from the June release of `azureml-inference-server-ht
495
495
+ Fixed a bug where to_dask_dataframe would fail because of a race condition.
496
496
+ Dataset from_files now supports skipping of data extensions for large input data
497
497
+**azureml-defaults**
498
-
+ We are removing the dependency azureml-model-management-sdk==1.0.1b6.post1 from azureml-defaults.
498
+
+ We're removing the dependency azureml-model-management-sdk==1.0.1b6.post1 from azureml-defaults.
499
499
+**azureml-interpret**
500
500
+ updated azureml-interpret to interpret-community 0.19.*
501
501
+**azureml-pipeline-core**
@@ -632,7 +632,7 @@ The `ml` extension to the Azure CLI is the next-generation interface for Azure M
632
632
+**Bug fixes and improvements**
633
633
+**azureml-core**
634
634
+ Added the ability to override the default timeout value for artifact uploading via the "AZUREML_ARTIFACTS_DEFAULT_TIMEOUT" environment variable.
635
-
+ Fixed a bug where docker settings in Environment object on ScriptRunConfig are not respected.
635
+
+ Fixed a bug where docker settings in Environment object on ScriptRunConfig aren't respected.
636
636
+ Allow partitioning a dataset when copying it to a destination.
637
637
+ Added a custom mode to the OutputDatasetConfig to enable passing created Datasets in pipelines through a link function. These support enhancements made to enable Tabular Partitioning for PRS.
638
638
+ Added a new KubernetesCompute compute type to azureml-core.
@@ -655,7 +655,7 @@ The `ml` extension to the Azure CLI is the next-generation interface for Azure M
655
655
### Azure Machine Learning SDK for Python v1.26.0
656
656
+**Bug fixes and improvements**
657
657
+**azureml-automl-core**
658
-
+ Fixed an issue where Naive models would be recommended in AutoMLStep runs and fail with lag or rolling window features. These models will not be recommended when target lags or target rolling window size are set.
658
+
+ Fixed an issue where Naive models would be recommended in AutoMLStep runs and fail with lag or rolling window features. These models won't be recommended when target lags or target rolling window size are set.
659
659
+ Changed console output when submitting an AutoML run to show a portal link to the run.
660
660
+**azureml-core**
661
661
+ Added HDFS mode in documentation.
@@ -756,8 +756,8 @@ The `ml` extension to the Azure CLI is the next-generation interface for Azure M
756
756
+ With setting show_output to True when deploy models, inference configuration and deployment configuration will be replayed before sending the request to server.
757
757
+**azureml-core**
758
758
+ Added functionality to filter Tabular Datasets by column values and File Datasets by metadata.
759
-
+ Previously, it was possibly for users to create provisioning configurations for ComputeTarget's that did not satisfy the password strength requirements for the `admin_user_password` field (that is, that they must contain at least 3 of the following: One lowercase letter, one uppercase letter, one digit, and one special character from the following set: ``\`~!@#$%^&*()=+_[]{}|;:./'",<>?``). If the user created a configuration with a weak password and ran a job using that configuration, the job would fail at runtime. Now, the call to `AmlCompute.provisioning_configuration` throws a `ComputeTargetException` with an accompanying error message explaining the password strength requirements.
760
-
+ Additionally, it was also possible in some cases to specify a configuration with a negative number of maximum nodes. It is no longer possible to do this. Now, `AmlCompute.provisioning_configuration` throws a `ComputeTargetException` if the `max_nodes` argument is a negative integer.
759
+
+ Previously, it was possibly for users to create provisioning configurations for ComputeTarget's that didn't satisfy the password strength requirements for the `admin_user_password` field (that is, that they must contain at least 3 of the following: One lowercase letter, one uppercase letter, one digit, and one special character from the following set: ``\`~!@#$%^&*()=+_[]{}|;:./'",<>?``). If the user created a configuration with a weak password and ran a job using that configuration, the job would fail at runtime. Now, the call to `AmlCompute.provisioning_configuration` throws a `ComputeTargetException` with an accompanying error message explaining the password strength requirements.
760
+
+ Additionally, it was also possible in some cases to specify a configuration with a negative number of maximum nodes. It's no longer possible to do this. Now, `AmlCompute.provisioning_configuration` throws a `ComputeTargetException` if the `max_nodes` argument is a negative integer.
761
761
+ With setting show_output to True when deploy models, inference configuration and deployment configuration will be displayed.
762
762
+ With setting show_output to True when wait for the completion of model deployment, the progress of deployment operation will be displayed.
@@ -812,7 +812,7 @@ The `ml` extension to the Azure CLI is the next-generation interface for Azure M
812
812
+ Previously, it was possible to create a provisioning configuration with the minimum node count less than the maximum node count. This has now been fixed. If you now try to create a provisioning configuration with `min_nodes < max_nodes` the SDK will raises a `ComputeTargetException`.
813
813
+ Fixes bug in wait_for_completion in AmlCompute, which caused the function to return control flow before the operation was actually complete
814
814
+ Run.fail() is now deprecated, use Run.tag() to mark run as failed or use Run.cancel() to mark the run as canceled.
815
-
+ Show error message 'Environment name expected str, {} found' when provided environment name is not a string.
815
+
+ Show error message 'Environment name expected str, {} found' when provided environment name isn't a string.
816
816
+**azureml-train-automl-client**
817
817
+ Fixed a bug that prevented AutoML experiments performed on Azure Databricks clusters from being canceled.
818
818
@@ -824,7 +824,7 @@ The `ml` extension to the Azure CLI is the next-generation interface for Azure M
824
824
+**azureml-automl-core**
825
825
+ Fixed bug where an extra pip dependency was added to the conda yml file for vision models.
826
826
+**azureml-automl-runtime**
827
-
+ Fixed a bug where classical forecasting models (for example, AutoArima) could receive training data wherein rows with imputed target values were not present. This violated the data contract of these models. * Fixed various bugs with lag-by-occurrence behavior in the time-series lagging operator. Previously, the lag-by-occurrence operation did not mark all imputed rows correctly and so would not always generate the correct occurrence lag values. Also fixed some compatibility issues between the lag operator and the rolling window operator with lag-by-occurrence behavior. This previously resulted in the rolling window operator dropping some rows from the training data that it should otherwise use.
827
+
+ Fixed a bug where classical forecasting models (for example, AutoArima) could receive training data wherein rows with imputed target values weren't present. This violated the data contract of these models. * Fixed various bugs with lag-by-occurrence behavior in the time-series lagging operator. Previously, the lag-by-occurrence operation didn't mark all imputed rows correctly and so wouldn't always generate the correct occurrence lag values. Also fixed some compatibility issues between the lag operator and the rolling window operator with lag-by-occurrence behavior. This previously resulted in the rolling window operator dropping some rows from the training data that it should otherwise use.
828
828
+**azureml-core**
829
829
+ Adding support for Token Authentication by audience.
830
830
+ Add `process_count` to [PyTorchConfiguration](/python/api/azureml-core/azureml.core.runconfig.pytorchconfiguration) to support multi-process multi-node PyTorch jobs.
@@ -888,7 +888,7 @@ The `ml` extension to the Azure CLI is the next-generation interface for Azure M
888
888
+**azureml-train-core**
889
889
+ Fix to remove another registration on datastore for resume run feature
890
890
+**azureml-widgets**
891
-
+ Customers should not see changes to existing run data visualization using the widget, and now will have support if they optionally use conditional hyperparameters.
891
+
+ Customers shouldn't see changes to existing run data visualization using the widget, and now will have support if they optionally use conditional hyperparameters.
892
892
+ The user run widget now includes a detailed explanation for why a run is in the queued state.
893
893
894
894
@@ -897,9 +897,9 @@ The `ml` extension to the Azure CLI is the next-generation interface for Azure M
897
897
### Azure Machine Learning SDK for Python v1.20.0
898
898
+**Bug fixes and improvements**
899
899
+**azure-cli-ml**
900
-
+ framework_version added in OptimizationConfig. It is used when model is registered with framework MULTI.
900
+
+ framework_version added in OptimizationConfig. It's used when model is registered with framework MULTI.
901
901
+**azureml-contrib-optimization**
902
-
+ framework_version added in OptimizationConfig. It is used when model is registered with framework MULTI.
902
+
+ framework_version added in OptimizationConfig. It's used when model is registered with framework MULTI.
903
903
+**azureml-pipeline-steps**
904
904
+ Introducing CommandStep, which would take command to process. Command can include executables, shell commands, scripts, etc.
905
905
+**azureml-core**
@@ -1015,7 +1015,7 @@ The `ml` extension to the Azure CLI is the next-generation interface for Azure M
1015
1015
+ Pin the package: pyjwt to avoid pulling in breaking in versions upcoming releases.
1016
1016
+ Creating an experiment returns the active or last archived experiment with that same given name if such experiment exists or a new experiment.
1017
1017
+ Calling get_experiment by name returns the active or last archived experiment with that given name.
1018
-
+ Users cannot rename an experiment while reactivating it.
1018
+
+ Users can't rename an experiment while reactivating it.
1019
1019
+ Improved error message to include potential fixes when a dataset is incorrectly passed to an experiment (for example, ScriptRunConfig).
1020
1020
+ Improved documentation for `OutputDatasetConfig.register_on_complete` to include the behavior of what will happen when the name already exists.
1021
1021
+ Specifying dataset input and output names that have the potential to collide with common environment variables will now result in a warning
@@ -1067,7 +1067,7 @@ Learn more about [image instance segmentation labeling](../how-to-label-data.md)
1067
1067
+**azureml-explain-model**
1068
1068
+ The azureml-explain-model package is officially deprecated
1069
1069
+**azureml-mlflow**
1070
-
+ Resolved a bug in mlflow.projects.run against azureml backend where Finalizing state was not handled properly.
1070
+
+ Resolved a bug in mlflow.projects.run against azureml backend where Finalizing state wasn't handled properly.
1071
1071
+**azureml-pipeline-core**
1072
1072
+ Add support to create, list and get pipeline schedule based one pipeline endpoint.
1073
1073
+ Improved the documentation of PipelineData.as_dataset with an invalid usage example - Using PipelineData.as_dataset improperly will now result in a ValueException being thrown
@@ -1128,7 +1128,7 @@ Learn more about [image instance segmentation labeling](../how-to-label-data.md)
1128
1128
+ Support Triton No Code Deploy
1129
1129
+ outputs directories specified in Run.start_logging() will now be tracked when using run in interactive scenarios. The tracked files are visible on ML Studio upon calling Run.complete()
1130
1130
+ File encoding can be now specified during dataset creation with `Dataset.Tabular.from_delimited_files` and `Dataset.Tabular.from_json_lines_files` by passing the `encoding` argument. The supported encodings are 'utf8', 'iso88591', 'latin1', 'ascii', utf16', 'utf32', 'utf8bom' and 'windows1252'.
1131
-
+ Bug fix when environment object is not passed to ScriptRunConfig constructor.
1131
+
+ Bug fix when environment object isn't passed to ScriptRunConfig constructor.
1132
1132
+ Updated Run.cancel() to allow cancel of a local run from another machine.
1133
1133
+**azureml-dataprep**
1134
1134
+ Fixed dataset mount timeout issues.
@@ -1154,15 +1154,15 @@ Learn more about [image instance segmentation labeling](../how-to-label-data.md)
1154
1154
### Azure Machine Learning SDK for Python v1.14.0
1155
1155
+**Bug fixes and improvements**
1156
1156
+**azure-cli-ml**
1157
-
+ Grid Profiling removed from the SDK and is not longer supported.
1157
+
+ Grid Profiling removed from the SDK and isn't longer supported.
1158
1158
+**azureml-accel-models**
1159
1159
+ azureml-accel-models package now supports TensorFlow 2.x
1160
1160
+**azureml-automl-core**
1161
1161
+ Added error handling in get_output for cases when local versions of pandas/sklearn don't match the ones used during training
1162
1162
+**azureml-automl-runtime**
1163
1163
+ Fixed a bug where AutoArima iterations would fail with a PredictionException and the message: "Silent failure occurred during prediction."
1164
1164
+**azureml-cli-common**
1165
-
+ Grid Profiling removed from the SDK and is not longer supported.
1165
+
+ Grid Profiling removed from the SDK and isn't longer supported.
1166
1166
+**azureml-contrib-server**
1167
1167
+ Update description of the package for pypi overview page.
1168
1168
+**azureml-core**
@@ -1212,7 +1212,7 @@ Learn more about [image instance segmentation labeling](../how-to-label-data.md)
1212
1212
+**azureml-automl-runtime**
1213
1213
+ Set horovod for text DNN to always use fp16 compression.
1214
1214
+ This release supports models greater than 4 Gb.
1215
-
+ Fixed issue where AutoML fails with ImportError: cannot import name `RollingOriginValidator`.
1215
+
+ Fixed issue where AutoML fails with ImportError: can't import name `RollingOriginValidator`.
@@ -1274,7 +1274,7 @@ Learn more about [image instance segmentation labeling](../how-to-label-data.md)
1274
1274
+ Improved calculation of forecast quantiles when lookback features are disabled.
1275
1275
+ Fixed bool sparse matrix handling when computing explanations after AutoML.
1276
1276
+**azureml-core**
1277
-
+ A new method `run.get_detailed_status()` now shows the detailed explanation of current run status. It is currently only showing explanation for `Queued` status.
1277
+
+ A new method `run.get_detailed_status()` now shows the detailed explanation of current run status. It's currently only showing explanation for `Queued` status.
1278
1278
+ Add image_name and image_label parameters to Model.package() to enable renaming the built package image.
1279
1279
+ New method `set_pip_requirements()` to set the entire pip section in [`CondaDependencies`](/python/api/azureml-core/azureml.core.conda_dependencies.condadependencies) at once.
@@ -1321,7 +1321,7 @@ Learn more about [image instance segmentation labeling](../how-to-label-data.md)
1321
1321
+ Environment.get_image_details() return object type changed. `DockerImageDetails` class replaced `dict`, image details are available from the new class properties. Changes are backward compatible.
1322
1322
+ Fix bug for Environment.from_pip_requirements() to preserve dependencies structure
1323
1323
+ Fixed a bug where log_list would fail if an int and double were included in the same list.
1324
-
+ While enabling private link on an existing workspace, please note that if there are compute targets associated with the workspace, those targets will not work if they are not behind the same virtual network as the workspace private endpoint.
1324
+
+ While enabling private link on an existing workspace, please note that if there are compute targets associated with the workspace, those targets won't work if they are not behind the same virtual network as the workspace private endpoint.
1325
1325
+ Made `as_named_input` optional when using datasets in experiments and added `as_mount` and `as_download` to `FileDataset`. The input name will automatically generate if `as_mount` or `as_download` is called.
1326
1326
+**azureml-automl-core**
1327
1327
+ Unhandled exceptions in AutoML now point to a known issues HTTP page, where more information about the errors can be found.
0 commit comments