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/azure-machine-learning-release-notes.md
+79-1Lines changed: 79 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,84 @@ In this article, learn about Azure Machine Learning releases. For the full SDK
17
17
18
18
See [the list of known issues](resource-known-issues.md) to learn about known bugs and workarounds.
19
19
20
+
## 2020-05-11
21
+
22
+
### Azure Machine Learning SDK for Python v1.5.0
23
+
24
+
+**New features**
25
+
+**Preview features**
26
+
+**azureml-contrib-reinforcementlearning**
27
+
+ Azure Machine Learning is releasing preview support for reinforcement learning using the [Ray](https://ray.io) framework. The `ReinforcementLearningEstimator` enables training of reinforcement learning agents across GPU and CPU compute targets in Azure Machine Learning.
28
+
29
+
+**Bug fixes and improvements**
30
+
+**azure-cli-ml**
31
+
+ Fixes an accidentally left behind warning log in my previous PR. The log was used for debugging and accidentally was left behind.
32
+
+ Bug fix: inform clients about partial failure during profiling
33
+
+**azureml-automl-core**
34
+
+ Speed up Prophet/AutoArima model in automl forecasting by enabling parallel fitting for the time series when data sets has multiple time series. In order to benefit from this new feature, you are recommended to set "max_cores_per_iteration = -1" (i.e., using all the available cpu cores) in AutoMLConfig.
35
+
+ Fix KeyError on printing guardrails in console interface
36
+
+ Fixed error message for experimentation_timeout_hours
37
+
+ Deprecated Tensorflow models for AutoML.
38
+
+**azureml-automl-runtime**
39
+
+ Fixed error message for experimentation_timeout_hours
40
+
+ Fixed unclassified exception when trying to deserialize from cache store
41
+
+ Speed up Prophet/AutoArima model in automl forecasting by enabling parallel fitting for the time series when data sets has multiple time series.
42
+
+ Fixed the forecasting with enabled rolling window on the data sets where test/prediction set does not contain one of grains from the training set.
43
+
+ Improved handling of missing data
44
+
+ Fixed issue with prediction intervals during forecasting on data sets, containing time series, which are not aligned in time.
45
+
+ Added better validation of data shape for the forecasting tasks.
46
+
+ Improved the frequency detection.
47
+
+ Created better error message if the cross validation folds for forecasting tasks can not be generated.
48
+
+ Fix console interface to print missing value guardrail correctly.
49
+
+ Enforcing datatype checks on cv_split_indices input in AutoMLConfig.
50
+
+**azureml-cli-common**
51
+
+ Bug fix: inform clients about partial failure during profiling
52
+
+**azureml-contrib-mir**
53
+
+ Adds a class azureml.contrib.mir.RevisionStatus which relays information about the currently deployed MIR revision and the most recent version specified by the user. This class is included in the MirWebservice object under 'deployment_status' attribute.
54
+
+ Enables update on Webservices of type MirWebservice and its child class SingleModelMirWebservice.
55
+
+**azureml-contrib-reinforcementlearning**
56
+
+ Added support for Ray 0.8.3
57
+
+ AmlWindowsCompute only supports Azure Files as mounted storage
58
+
+ Renamed health_check_timeout to health_check_timeout_seconds
59
+
+ Fixed some class/method descriptions.
60
+
+**azureml-core**
61
+
+ Enabled WASB -> Blob conversions in USGovernment and China clouds.
62
+
+ Fixes bug to allow Reader roles to use az ml run CLI commands to get run information
63
+
+ Removed unnecessary logging during Azure ML Remote Runs with input Datasets.
64
+
+ RCranPackage now supports "version" parameter for the CRAN package version.
65
+
+ Bug fix: inform clients about partial failure during profiling
66
+
+ Added European-style float handling for azureml-core.
67
+
+ Enabled workspace private link features in azure ml sdk.
68
+
+ When creating a TabularDataset using `from_delimited_files`, you can specify whether empty values should be loaded as None or as empty string by setting the boolean argument `empty_as_string`.
69
+
+ Added European-style float handling for datasets.
70
+
+ Improved error messages on dataset mount failures.
71
+
+**azureml-datadrift**
72
+
+ Data Drift results query from the SDK had a bug that didn't differentiate the minimum, maximum, and mean feature metrics, resulting in duplicate values. We have fixed this bug by prefixing target or baseline to the metric names. Before: duplicate min, max, mean. After: target_min, target_max, target_mean, baseline_min, baseline_max, baseline_mean.
73
+
+**azureml-dataprep**
74
+
+ Improve handling of write restricted python environments when ensuring .NET Dependencies required for data delivery.
75
+
+ Fixed Dataflow creation on file with leading empty records.
76
+
+ Added error handling options for `to_partition_iterator` similar to `to_pandas_dataframe`.
77
+
+**azureml-interpret**
78
+
+ Reduced explanation path length limits to reduce likelihood of going over Windows limit
79
+
+ Bugfix for sparse explanations created with the mimic explainer using a linear surrogate model.
80
+
+**azureml-opendatasets**
81
+
+ Fix issue of MNIST's columns are parsed as string which should be int.
82
+
+**azureml-pipeline-core**
83
+
+ Allowing the option to regenerate_outputs when using a module that is embedded in a ModuleStep.
84
+
+**azureml-train-automl-client**
85
+
+ Deprecated Tensorflow models for AutoML.
86
+
+ Fix users whitelisting unsupported algorithms in local mode
87
+
+ Doc fixes to AutoMLConfig.
88
+
+ Enforcing datatype checks on cv_split_indices input in AutoMLConfig.
89
+
+ Fixed issue with AutoML run failing in show_output
90
+
+**azureml-train-automl-runtime**
91
+
+ Fixing a bug in Ensemble iterations which was preventing model download timeout from kicking in successfully.
92
+
+**azureml-train-core**
93
+
+ Fix typo in azureml.train.dnn.Nccl class.
94
+
+ Supporting PyTorch version 1.5 in the PyTorch Estimator
95
+
+ Fix the issue that framework image can't be fetched in fairfax region when using training framework estimators
96
+
97
+
20
98
## 2020-05-04
21
99
**New Notebook Experience**
22
100
@@ -61,7 +139,7 @@ Access the following web-based authoring tools from the studio:
61
139
+**azureml-core**
62
140
+ Improved stability when reading from Azure Blob Storage using a TabularDataset.
63
141
+ Improved documentation for the `grant_workspace_msi` parameter for `Datastore.register_azure_blob_store`.
64
-
+ Fixed bug with `datastore.upload`where if the `src_dir` argument ended with a `/` or `\`, we will fail to upload.
142
+
+ Fixed bug with `datastore.upload`to support the `src_dir` argument ending with a `/` or `\`.
65
143
+ Added actionable error message when trying to upload to an Azure Blob Storage datastore that does not have an access key or SAS token.
66
144
+**azureml-interpret**
67
145
+ Added upper bound to file size for the visualization data on uploaded explanations.
0 commit comments