DEV Community

Ambarish Ganguly
Ambarish Ganguly

Posted on • Originally published at ambarishg.github.io

3 3

Azure ML workspace

Azure ML has a top-level component which is the Workspace. The workspace contains all the components of the Azure Machine Learning space.

image

The workspace is associated with

  • Azure subscription
  • Azure Key Vault
  • Azure Application Insights

It is associated with the following assets

  • Datasets
  • Experiments
  • Pipelines
  • Models
  • EndPoints

The workspace manages the following

  • Datastores
  • Compute

The workspace can be used for authoring

  • Notebooks
  • Automated ML
  • Designer

You can implement via code

import azureml.core
print(azureml.core.VERSION)
Enter fullscreen mode Exit fullscreen mode
from azureml.core import Workspace
from azureml.core.authentication import InteractiveLoginAuthentication

sid = <your-subscription-id>
forced_interactive_auth = InteractiveLoginAuthentication(tenant_id=<your-tenant-id>)
ws = Workspace.create(name='azureml_workspace',
            subscription_id= sid, 
            resource_group='rgazureml',
            create_resource_group = True,
            location='centralus'
            )
Enter fullscreen mode Exit fullscreen mode

Sentry image

Hands-on debugging session: instrument, monitor, and fix

Join Lazar for a hands-on session where you’ll build it, break it, debug it, and fix it. You’ll set up Sentry, track errors, use Session Replay and Tracing, and leverage some good ol’ AI to find and fix issues fast.

RSVP here →

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay