We finally managed to run the ml_client.py

This commit is contained in:
Lillian Violet 2024-09-04 12:27:59 +02:00
parent ff8c7d4188
commit 8786f26e1e
6 changed files with 339 additions and 4 deletions

View file

@ -34,9 +34,9 @@ def create_or_load_ml_client():
# You can find the info on the workspace tab on ml.azure.com
ml_client = MLClient(
credential=credential,
subscription_id=XXXXX,
resource_group_name=XXXXX,
workspace_name=XXXXX,
subscription_id=AZURE_SUBSCRIPTION_ID,
resource_group_name=AZURE_RESOURCE_GROUP,
workspace_name=AZURE_WORKSPACE_NAME,
)
return ml_client