Untitled
Anonymous
python
09/12/2024 2:15 AM
420 B
29
Indexable
from azure.ai.ml.entities import Workspace
workspace_name = "mlw-example"
ws_basic = Workspace(
name=workspace_name,
location="eastus",
display_name="Basic workspace-example",
description="This example shows how to create a basic workspace",
)
ml_client.workspaces.begin_create(ws_basic)Editor is loading...
Leave a Comment