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 Timescale

🚀 pgai Vectorizer: SQLAlchemy and LiteLLM Make Vector Search Simple

We built pgai Vectorizer to simplify embedding management for AI applications—without needing a separate database or complex infrastructure. Since launch, developers have created over 3,000 vectorizers on Timescale Cloud, with many more self-hosted.

Read more →

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more