Skip to content

Commit 2b703ab

Browse files
authored
Fixed and added release notes mainly for azureml-core
1 parent a1f3e49 commit 2b703ab

File tree

1 file changed

+23
-20
lines changed

1 file changed

+23
-20
lines changed

articles/machine-learning/azure-machine-learning-release-notes.md

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,15 @@ See [the list of known issues](resource-known-issues.md) to learn about known bu
3333
+ **Bug fixes and improvements**
3434
+ **azureml-automl-runtime**
3535
+ Enable support for unhashable type when calculating number of unique values in a column.
36-
+ **azureml-dataprep**
37-
+ Support european-style dot-delimited decimal conversion in set_column_types.
36+
+ **azureml-core**
37+
+ Improved stability when reading from Azure Blob Storage using a TabularDataset.
38+
+ Improved documentation for the `grant_workspace_msi` parameter for `Datastore.register_azure_blob_store`.
39+
+ Fixed bug with `datastore.upload` where if the `src_dir` argument ended with a `/` or `\`, we will fail to upload.
40+
+ Added actionable error message when trying to upload to an Azure Blob Storage datastore that does not have an access key or SAS token.
3841
+ **azureml-interpret**
39-
+ added upper bound to file size for the visualization data on uploaded explanations
42+
+ Added upper bound to file size for the visualization data on uploaded explanations.
4043
+ **azureml-train-automl-client**
41-
+ Explicitely checking for label_column_name & weight_column_name parameters for AutoMLConfig to be of type string.
44+
+ Explicitly checking for label_column_name & weight_column_name parameters for AutoMLConfig to be of type string.
4245

4346

4447
## 2020-04-13
@@ -64,13 +67,12 @@ See [the list of known issues](resource-known-issues.md) to learn about known bu
6467
+ Added Environment.clone(new_name) API to create a copy of Environment object
6568
+ Environment.docker.base_dockerfile accepts filepath. If able to resolve a file, the content will be read into base_dockerfile environment property
6669
+ Automatically reset mutually exclusive values for base_image and base_dockerfile when user manually sets a value in Environment.docker
67-
+ Dataset: fixed dataset download failure if data path containing unicode characters
68-
+ Dataset: improved dataset mount caching mechanism to respect the minimum disk space requirement in Azure Machine Learning Compute, which avoids making the node unusable and causing the job to be canceled
6970
+ Added user_managed flag in RSection which indicates whether the environment is managed by user or by AzureML.
70-
+ Dataset: we add an index for the timeseries column when you access a timeseries dataset as a pandas dataframes, which is used to speed up access to timeseries based data access. Previously, the index was given the same name as the timestamp column, confusing users about which is the actual timestamp column and which is the index. We now don't give any specific name to the index since it should not be used as a column.
71-
+ **azureml-dataprep**
72-
+ Fixed dataset authentication issue in sovereign cloud
73-
+ Fixed `Dataset.to_spark_dataframe` failure for datasets created from Azure PostgreSQL datastores
71+
+ Dataset: Fixed dataset download failure if data path containing unicode characters.
72+
+ Dataset: Improved dataset mount caching mechanism to respect the minimum disk space requirement in Azure Machine Learning Compute, which avoids making the node unusable and causing the job to be canceled.
73+
+ Dataset: We add an index for the timeseries column when you access a timeseries dataset as a pandas dataframes, which is used to speed up access to timeseries based data access. Previously, the index was given the same name as the timestamp column, confusing users about which is the actual timestamp column and which is the index. We now don't give any specific name to the index since it should not be used as a column.
74+
+ Dataset: Fixed dataset authentication issue in sovereign cloud.
75+
+ Dataset: Fixed `Dataset.to_spark_dataframe` failure for datasets created from Azure PostgreSQL datastores.
7476
+ **azureml-interpret**
7577
+ Added global scores to visualization if local importance values are sparse
7678
+ Updated azureml-interpret to use interpret-community 0.9.*
@@ -89,6 +91,7 @@ See [the list of known issues](resource-known-issues.md) to learn about known bu
8991
+ **azureml-opendatasets**
9092
+ Added additional telemetry for service monitor.
9193
+ Enable frontdoor for blob to increase stability
94+
9295
## 2020-03-23
9396

9497
### Azure Machine Learning SDK for Python v1.2.0
@@ -109,7 +112,7 @@ See [the list of known issues](resource-known-issues.md) to learn about known bu
109112
+ Added better error messages if time column has incorrect format.
110113
+ Enabled customized imputation with constant value for both X and y data forecasting tasks.
111114
+ **azureml-core**
112-
+ Add support for loading ServicePrincipal from environment variables: AZUREML_SERVICE_PRINCIPAL_ID, AZUREML_SERVICE_PRINCIPAL_TENANT_ID, and AZUREML_SERVICE_PRINCIPAL_PASSWORD
115+
+ Added support for loading ServicePrincipal from environment variables: AZUREML_SERVICE_PRINCIPAL_ID, AZUREML_SERVICE_PRINCIPAL_TENANT_ID, and AZUREML_SERVICE_PRINCIPAL_PASSWORD
113116
+ Introduced a new parameter `support_multi_line` to `Dataset.Tabular.from_delimited_files`: By default (`support_multi_line=False`), all line breaks, including those in quoted field values, will be interpreted as a record break. Reading data this way is faster and more optimized for parallel execution on multiple CPU cores. However, it may result in silently producing more records with misaligned field values. This should be set to `True` when the delimited files are known to contain quoted line breaks.
114117
+ Added the ability to register ADLS Gen2 in the Azure Machine Learning CLI
115118
+ Renamed parameter 'fine_grain_timestamp' to 'timestamp' and parameter 'coarse_grain_timestamp' to 'partition_timestamp' for the with_timestamp_columns() method in TabularDataset to better reflect the usage of the parameters.
@@ -169,19 +172,19 @@ See [the list of known issues](resource-known-issues.md) to learn about known bu
169172
+ **azureml-core**
170173
+ Deployed AzureML Webservices will now default to `INFO` logging. This can be controlled by setting the `AZUREML_LOG_LEVEL` environment variable in the deployed service.
171174
+ Python sdk uses discovery service to use 'api' endpoint instead of 'pipelines'.
172-
+ Swap to the new routes in all SDK calls
173-
+ Changes routing of calls to the ModelManagementService to a new unified structure
175+
+ Swap to the new routes in all SDK calls.
176+
+ Changed routing of calls to the ModelManagementService to a new unified structure.
174177
+ Made workspace update method publicly available.
175-
+ Added image_build_compute parameter in workspace update method to allow user updating the compute for image build
176-
+ Added deprecation messages to the old profiling workflow. Fixed profiling cpu and memory limits
177-
+ Added RSection as part of Environment to run R jobs
178-
+ Added validation to `Dataset.mount` to raise error when source of the dataset is not accessible or does not contain any data.
179-
+ Added `--grant-workspace-msi-access` as an additional parameter for the Datastore CLI for registering Azure Blob Container which will allow you to register Blob Container that is behind a VNet
178+
+ Added image_build_compute parameter in workspace update method to allow user updating the compute for image build.
179+
+ Added deprecation messages to the old profiling workflow. Fixed profiling cpu and memory limits.
180+
+ Added RSection as part of Environment to run R jobs.
181+
+ Added validation to `Dataset.mount` to raise error when source of the dataset is not accessible or does not contain any data.
182+
+ Added `--grant-workspace-msi-access` as an additional parameter for the Datastore CLI for registering Azure Blob Container which will allow you to register Blob Container that is behind a VNet.
180183
+ Single instance profiling was fixed to produce a recommendation and was made available in core sdk.
181-
+ Fixed the issue in aks.py _deploy
184+
+ Fixed the issue in aks.py _deploy.
182185
+ Validates the integrity of models being uploaded to avoid silent storage failures.
183186
+ User may now specify a value for the auth key when regenerating keys for webservices.
184-
+ Fixed bug where uppercase letters cannot be used as dataset's input name
187+
+ Fixed bug where uppercase letters cannot be used as dataset's input name.
185188
+ **azureml-defaults**
186189
+ `azureml-dataprep` will now be installed as part of `azureml-defaults`. It is no longer required to install dataprep[fuse] manually on compute targets to mount datasets.
187190
+ **azureml-interpret**

0 commit comments

Comments
 (0)