Skip to content

Commit 5d3606c

Browse files
authored
Merge pull request #180599 from nibaccam/limit-cred-automl
AutoML | limits for id based data acces
2 parents c16a2c3 + df3cca1 commit 5d3606c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

articles/machine-learning/how-to-configure-auto-train.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ Requirements for training data in machine learning:
5858
- Data must be in tabular form.
5959
- The value to predict, target column, must be in the data.
6060

61+
> [!IMPORTANT]
62+
> Automated ML experiments do not support training with datasets that use [identity-based data access](how-to-identity-based-data-access.md).
63+
6164
**For remote experiments**, training data must be accessible from the remote compute. Automated ML only accepts [Azure Machine Learning TabularDatasets](/python/api/azureml-core/azureml.data.tabulardataset) when working on a remote compute.
6265

6366
Azure Machine Learning datasets expose functionality to:

articles/machine-learning/how-to-identity-based-data-access.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,12 @@ sqldb_dstore = Datastore.register_azure_sql_database(workspace=ws,
155155

156156
## Use data in storage
157157

158-
We recommend that you use [Azure Machine Learning datasets](how-to-create-register-datasets.md) when you interact with your data in storage with Azure Machine Learning.
158+
We recommend that you use [Azure Machine Learning datasets](how-to-create-register-datasets.md) when you interact with your data in storage with Azure Machine Learning.
159159

160-
Datasets package your data into a lazily evaluated consumable object for machine learning tasks like training. Also, with datasets you can [download or mount](how-to-train-with-datasets.md#mount-vs-download) files of any format from Azure storage services like Azure Blob Storage and Azure Data Lake Storage to a compute target.
160+
> [!IMPORTANT]
161+
> Datasets using identity-based data access is not supported for [automated ML experiments](how-to-configure-auto-train.md).
161162
163+
Datasets package your data into a lazily evaluated consumable object for machine learning tasks like training. Also, with datasets you can [download or mount](how-to-train-with-datasets.md#mount-vs-download) files of any format from Azure storage services like Azure Blob Storage and Azure Data Lake Storage to a compute target.
162164

163165
To create datasets with identity-based data access, you have the following options. This type of dataset creation uses your Azure Active Directory token for data access authentication.
164166

0 commit comments

Comments
 (0)