1

How can I create a new Azure Machine Learning workspace when creating a new Azure Container Instance from Azure cloud shell.

Here is a sample of the command am using to create the ACI.

az container create --name dev-container –resource-group XXX –location eastus –image mcr.microsoft.com/XXX –cpu 2 –memory 6 –environment-variables WORKSPACE_NAME=XXX

Thanks

Jay chuks
  • 389
  • 1
  • 5
  • 18

1 Answers1

1

I think you're approaching the problem from the opposite direction than the Azure ML PG. My understanding is that when you make an Azure ML workspace, an Azure Container Instance service is automatically spun up and is inherently tied to the Azure ML workspace. Check out a similar question another user had this week

More generally, Azure ML has a core feature called Environments which provides a simple interface for creating custom Docker/Conda environments.

Anders Swanson
  • 3,637
  • 1
  • 18
  • 43