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
+52Lines changed: 52 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,58 @@ 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-04-13
21
+
22
+
### Azure Machine Learning SDK for Python v1.3.0
23
+
24
+
+**New features**
25
+
+[Insert new features below. Reference articles and/or doc pages]
26
+
27
+
+**Preview features**
28
+
+[Contrib features below]
29
+
30
+
+**Breaking changes**
31
+
+[Reference upcoming breaking changes and old API support drop date]
32
+
33
+
+**Bug fixes and improvements**
34
+
+**azureml-automl-core**
35
+
+ Added additional telemetry around post-training operations.
36
+
+ Speeds up automatic ARIMA training by using conditional sum of squares (CSS) training for series of length longer than 100. Note that the length used is stored as the constant ARIMA_TRIGGER_CSS_TRAINING_LENGTH w/in the TimeSeriesInternal class at /src/azureml-automl-core/azureml/automl/core/shared/constants.py
37
+
+ The user logging of forecasting runs was improved, now more information on what phase is currently running will be shown in the log
38
+
+ Disallowed target_rolling_window_size to be set to values less then 2
39
+
+**azureml-automl-runtime**
40
+
+ Improved the error message shown when duplicated timestamps are found.
41
+
+ Disallowed target_rolling_window_size to be set to values less then 2.
42
+
+ Fixed the lag imputation failure. The issue was caused by the insufficient number of observations needed to seasonally decompose a series. The "de-seasonalized" data is used to compute a partial autocorrelation function (PACF) to determine the lag length.
43
+
+**azureml-contrib-pipeline-steps**
44
+
+ Accept string compute names to be passed to ParallelRunConfig
45
+
+**azureml-core**
46
+
+ Added Environment.clone(new_name) API to create a copy of Environment object
47
+
+ Environment.docker.base_dockerfile accepts filepath. If able to resolve a file, the content will be read into base_dockerfile environment property - Automatically reset mutually exclusive values for base_image and base_dockerfile when user manually sets a value in Environment.docker
48
+
+ Dataset: enable data access to credential-less Datastore of Azure SQL DB and ADLS Gen 2 using compute or user identity. Please refer to these articles for permission configuration for identity based data access: [Azure SQL](https://docs.microsoft.com/en-us/azure/sql-database/sql-database-aad-authentication-configure?tabs=azure-powershell), [ADLS Gen 2](https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-access-control)
49
+
+ Dataset: fix a bug that dataset may not be able to download file with path containing unicode characters because of system local setting.
50
+
+ Ensure dataset's mount cache respect the minimum disk space requirement in Azure Machine Learning Compute to avoid making the node becoming unusable and causing the job to be canceled
51
+
+ Added user_managed flag in RSection which indicates whether the environment is managed by user or by AzureML.
52
+
+**azureml-dataprep**
53
+
+ Dataset: enable data access to credential-less Datastore of Azure SQL DB and ADLS Gen 2 using compute or user identity. Please refer to these articles for permission configuration for identity based data access: [Azure SQL](https://docs.microsoft.com/en-us/azure/sql-database/sql-database-aad-authentication-configure?tabs=azure-powershell), [ADLS Gen 2](https://docs.microsoft.com/en-us/azure/storage/blobs/data-lake-storage-access-control)
54
+
+ Fixed Dataset authentication issue in sovereign clouds
55
+
+ Fixed `Dataset.to_spark_dataframe` failing for Datasets created from Azure PostgreSQL datastores
56
+
+**azureml-interpret**
57
+
+ add global scores to visualization if local importance values are sparse
58
+
+ update azureml-interpret to interpret-community 0.9.*
59
+
+ fixed issue with downloading explanation that had sparse evaluation data (did not allow reconstructing explanation due to ys present but no eval data, since sparse eval data currently can't be uploaded)
60
+
+ added sparse automl e2e support
61
+
+**azureml-pipeline-core**
62
+
+ Support ComputeInstance as compute target in pipelines
63
+
+**azureml-train-automl-client**
64
+
+ Added additional telemetry around post-training operations.
65
+
+ Fixed the regression in early stopping
66
+
+ Deprecated azureml.dprep.Dataflow as a valid type for input data.
67
+
+ Changing default AutoML experiment timeout to 6 days.
68
+
+**azureml-train-automl-runtime**
69
+
+ Added additional telemetry around post-training operations.
0 commit comments