Skip to content

Commit 3ac4fb9

Browse files
authored
Merge pull request #88783 from harneetvirk/master
AzureML Python SDK 2019-09-16 Release Notes
2 parents 6ea40f1 + c866753 commit 3ac4fb9

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

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

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,55 @@ In this article, learn about Azure Machine Learning releases. For the full SDK
1818

1919
See [the list of known issues](resource-known-issues.md) to learn about known bugs and workarounds.
2020

21+
## 2019-09-16
22+
23+
### Azure Machine Learning SDK for Python v1.0.62
24+
25+
+ **New features**
26+
+ Introduced the timeseries trait on TabularDataset. This trait enables easy timestamp filtering on data a TabularDataset, such as taking all data between a range of time or the most recent data. To learn about this the timeseries trait on TabularDataset, please visit https://aka.ms/azureml-data for documentation or https://aka.ms/azureml-tsd-notebook for an example notebook.
27+
+ Enabled training with TabularDataset and FileDataset. Please visit https://aka.ms/dataset-tutorial for an example notebook.
28+
29+
+ **azureml-train-core**
30+
+ Added Nccl and Gloo support in PyTorch estimator
31+
32+
+ **Bug fixes and improvements**
33+
+ **azureml-automl-core**
34+
+ Deprecated the AutoML setting 'lag_length' and the LaggingTransformer.
35+
+ Fixed correct validation of input data if they are specified in a Dataflow format
36+
+ Modified the fit_pipeline.py to generate the graph json and upload to artifacts.
37+
+ Rendered the graph under userrun using Cytoscape.
38+
+ **azureml-core**
39+
+ Revisited the exception handling in ADB code and make changes to as per new error handling
40+
+ Added automatic MSI authentication for Notebook VMs.
41+
+ Fixes bug where corrupt or empty models could be uploaded because of failed retries.
42+
+ Fixed the bug where `DataReference` name changes when the `DataReference` mode changes (e.g. when calling `as_upload`, `as_download`, or `as_mount`).
43+
+ Make `mount_point` and `target_path` optional for `FileDataset.mount` and `FileDataset.download`.
44+
+ Exception that timestamp column cannot be found will be throw out if the time serials related API is called without fine timestamp column assigned or the assigned timestamp columns are dropped.
45+
+ Time serials columns should be assigned with column whose type is Date, otherwise exception is expected
46+
+ Time serials columns assigning API 'with_timestamp_columns' can take None value fine/coarse timestamp column name, which will clear previously assigned timestamp columns.
47+
+ Exception will be thrown out when either coarse grain or fine grained timestamp column is dropped with indication for user that dropping can be done after either excluding timestamp column in dropping list or call with_time_stamp with None value to release timestamp columns
48+
+ Exception will be thrown out when either coarse grain or fine grained timestamp column is not included in keep columns list with indication for user that keeping can be done after either including timestamp column in keep column list or call with_time_stamp with None value to release timestamp columns.
49+
+ Added logging for the size of a registered model.
50+
+ **azureml-explain-model**
51+
+ Fixed warning printed to console when "packaging" python package is not installed: "Using older than supported version of lightgbm, please upgrade to version greater than 2.2.1"
52+
+ Fixed download model explanation with sharding for global explanations with many features
53+
+ Fixed mimic explainer missing initialization examples on output explanation
54+
+ Fixed immutable error on set properties when uploading with explanation client using two different types of models
55+
+ Added a get_raw param to scoring explainer .explain() so one scoring explainer can return both engineered and raw values.
56+
+ **azureml-train-automl**
57+
+ Introduced public APIs from AutoML for supporting explanations from automl explain SDK - Newer way of supporting AutoML explanations by decoupling AutoML featurization and explain SDK - Integrated raw explanation support from azureml explain SDK for AutoML models.
58+
+ Removing azureml-defaults from remote training environments.
59+
+ Changed default cache store location from FileCacheStore based one to AzureFileCacheStore one for AutoML on AzureDatabricks code path.
60+
+ Fixed correct validation of input data if they are specified in a Dataflow format
61+
+ **azureml-train-core**
62+
+ Reverted source_directory_data_store deprecation.
63+
+ Added ability to override azureml installed package versions.
64+
+ Added dockerfile support in `environment_definition` parameter in estimators.
65+
+ Simplified distributed training parameters in estimators.
66+
```py
67+
from azureml.train.dnn import TensorFlow, Mpi, ParameterServer
68+
```
69+
2170
## 2019-09-09
2271

2372
### New web experience (preview) for Azure Machine Learning workspaces

0 commit comments

Comments
 (0)