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

Image of AssemblyAI

Automatic Speech Recognition with AssemblyAI

Experience near-human accuracy, low-latency performance, and advanced Speech AI capabilities with AssemblyAI's Speech-to-Text API. Sign up today and get $50 in API credit. No credit card required.

Try the API

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

Explore a sea of insights with this enlightening post, highly esteemed within the nurturing DEV Community. Coders of all stripes are invited to participate and contribute to our shared knowledge.

Expressing gratitude with a simple "thank you" can make a big impact. Leave your thanks in the comments!

On DEV, exchanging ideas smooths our way and strengthens our community bonds. Found this useful? A quick note of thanks to the author can mean a lot.

Okay