• Latest
  • Trending
Creating an Azure Machine Learning Instance

Creating an Azure Machine Learning Instance

May 19, 2022
Absa and Visa Extend Strategic Partnership to Advance Growth and Innovation Across Africa

Absa and Visa Extend Strategic Partnership to Advance Growth and Innovation Across Africa

July 29, 2025
French Telco Orange Hit by Cyber-Attack

French Telco Orange Hit by Cyber-Attack

July 29, 2025
ATC Ghana supports Girls-In-ICT Program

ATC Ghana supports Girls-In-ICT Program

April 25, 2023
Vice President Dr. Bawumia inaugurates  ICT Hub

Vice President Dr. Bawumia inaugurates ICT Hub

April 2, 2023
Co-Creation Hub’s edtech accelerator puts $15M towards African startups

Co-Creation Hub’s edtech accelerator puts $15M towards African startups

February 20, 2023
Data Leak Hits Thousands of NHS Workers

Data Leak Hits Thousands of NHS Workers

February 20, 2023
EU Cybersecurity Agency Warns Against Chinese APTs

EU Cybersecurity Agency Warns Against Chinese APTs

February 20, 2023
How Your Storage System Will Still Be Viable in 5 Years’ Time?

How Your Storage System Will Still Be Viable in 5 Years’ Time?

February 20, 2023
The Broken Promises From Cybersecurity Vendors

Cloud Infrastructure Used By WIP26 For Espionage Attacks on Telcos

February 20, 2023
Instagram and Facebook to get paid-for verification

Instagram and Facebook to get paid-for verification

February 20, 2023
YouTube CEO Susan Wojcicki steps down after nine years

YouTube CEO Susan Wojcicki steps down after nine years

February 20, 2023
Inaugural AfCFTA Conference on Women and Youth in Trade

Inaugural AfCFTA Conference on Women and Youth in Trade

September 6, 2022
  • Consumer Watch
  • Kids Page
  • Directory
  • Events
  • Reviews
Thursday, 16 July, 2026
  • Login
itechnewsonline.com
  • Home
  • Tech
  • Africa Tech
  • InfoSEC
  • Data Science
  • Data Storage
  • Business
  • Opinion
Subscription
Advertise
No Result
View All Result
itechnewsonline.com
No Result
View All Result

Creating an Azure Machine Learning Instance

by ITECHNEWS
May 19, 2022
in Data Science, Leading Stories
0 0
0
Creating an Azure Machine Learning Instance

In this article we’ll take a high-level look at the Azure Machine Learning service and give you a step-by-step guide to creating a machine learning instance. We’ll also touch on some pricing concerns and give you a high-level picture of the types of things the Machine Learning service and the accompanying Azure Machine Learning Studio (AMLS) can do.

This content is also available in video form on YouTube

YOU MAY ALSO LIKE

French Telco Orange Hit by Cyber-Attack

ATC Ghana supports Girls-In-ICT Program

 

Pre-Requisites

You’ll need an Azure account that you can log into the Azure Portal in order to create a machine learning instance.

If you don’t have an Azure account yet, I recommend you create a free Azure account. You can only do this once and only as your first Azure account (something I personally missed out on), but it gives you 12 months of free services plus a $200 credit for anything premium in the first month.

The rest of this article assumes you have a functioning Azure account and access to the Azure portal.

Creating an Azure Machine Learning Studio Instance

First, go to the Azure portal and click “Create a resource”.

Create a Resource

Next click on the “AI + Machine Learning” category in the sidebar and then select “Create” under “Machine Learning”.

Create a Machine Learning Resource

This will start the process of creating a machine learning instance.

Configuring the Machine Learning Instance

Before the machine learning instance can be created, you need to give it a few pieces of information and review its configuration.

There are a number of things going on with this page so let’s go over them one by one:

Configure the Machine Learning Resource

First, all Azure resources must be placed in a resource group to organize related resources. While you can re-use an existing resource group, I recommend creating a new resource group just for machine learning resources. This helps clarify the intent of other services that Azure may create for you for machine learning tasks and also gives you an easy way to delete all machine learning resources by deleting the entire resource group. This can be useful for experimenting with things and then deleting anything unused to prevent accidental recurring charges.

Important note: While the Machine Learning instance is free as of the time of this writing, other resources such as a container registry may have charges associated with them. Always check the pricing calculator before creating a resource and proactively monitor the Azure Cost Management. See Microsoft’s article on best practices for cost management for more details.

If you want automated machine learning without Azure or without any expenses, you might also consider ML.NET which uses many of the same innovations but requires programming knowledge.

Secondly, you need to give your workspace a unique name. Thankfully, this unique name is only unique within the resource group you’re using and is not something that must be unique across all users using Azure.

Next, verify the region of your machine learning resource. I’d recommend picking a region close to your geographical location.

Azure needs to create three distinct resources for your machine learning instance:

  1. a storage account to hold model data and notebook files
  2. a key vault to store sensitive information securely
  3. an application insights resource to monitor deployed models

I recommend creating a new instance of each of the three of these resources.

Azure also wants a container registry for your machine learning instance, however this is a paid resource and is not necessary unless you are deploying a model. Once you deploy a model, Azure will automatically create a container registry if it needs one. For this reason, I recommend leaving container registry set to “None”.

Finally, click “Review + Create”

Azure will validate that your configuration is valid and prompt you to confirm all of your settings here.

Confirm the Machine Learning Resource configuration

Go ahead and click “Create” once you are satisfied with your configuration.

Azure will now create your resource. This usually takes two minutes, but may take longer depending on the time of day or other factors.

Once your resource has been created, click “Go to Resource” to go to the new machine learning instance.

Machine Learning Instance

Once your resource has been created, you should see something similar to the following image:

The Machine Learning Resource

This interface is very similar to the interface used by other Azure resources such as an App Service and while it may look intimidating initially, there’s actually not a lot for us to do here.

Before we move on, I want to point out the “Download config.json” button (labelled with 1 in the image above). This button lets you get a configuration file that will be helpful if you want to use the Azure ML SDK in the future (stay tuned for future content on this topic). For now we don’t need it, but keep in mind where this button is.

Next, let’s click “Launch studio” to leave the Azure portal and enter the Azure Machine Learning Studio.

Azure Machine Learning Studio

Azure Machine Learning Studio (AMLS) is the central place for data science tasks on Microsoft Azure.

Azure Machine Learning Studio

It has a few major features:

  • A featured area allowing you to quickly interact with the major parts of AMLS
  • Recent resources, documentation, and learning materials
  • A sidebar containing the major navigational points of interest

Going over the machine learning studio user interface is beyond the scope of this article, but look forward to future content to provide a guided tour.

What can you do with Azure Machine Learning Studio?

At a high level, Azure Machine Learning Studio lets you do the following things:

  • Run data science experiments
  • View past experiments, the models they produced, and the performance of those models
  • Deploy trained models to endpoints for batch or realtime processing
  • Monitor deployed models
  • Track and store datasets
  • Manage computational resources
  • Interact with Jupyter notebooks in a cloud environment

On top of that, Azure Machine Learning Studio is built for a variety of users from expert data scientists to those brand new to data science.

There are three major ways of running data science experiments on Azure:

  1. Via the Azure ML SDK in Python or R
  2. Via the drag-and-drop designer
  3. Via Azure Automated ML (Auto ML)

These three approaches have a differing level of skills required for each one of them.

Automated ML

Those without deep data science knowledge can use Automated ML to create and run experiments without requiring knowledge of various machine learning algorithms, the hyperparameters they require, or the mechanics of splitting training and verification data.

Automated ML

The result of these experiments identifies the optimal algorithm and parameter set given the data and experiment parameters the user provided.

Results from an Automated ML experiment

Machine Learning Designer

The designer allows people familiar with machine learning routines to use a no code or low code approach to creating and running machine learning experiments using AMLS.

The Designer for a Classification Experiment

The designer does assume the user knows the basics of normalizing, feature engineering, splitting data for training, and selecting an algorithm for training. However, help is provided in the interface.

It’s also worth noting that you can provide custom R or Python code in dedicated nodes for this on the designer.

Azure ML SDK

The Azure ML SDK allows those familiar with Python or R to run machine learning experiments on the cloud or using their own hardware and store the results in experiments on Azure.

Python code working with the Azure SDK

Even if you use your own compute resources outside of Azure, you can still take advantage of Azure’s storage and visualization features to track experiments over time and deploy models to endpoints.

Tracking a ML Experiment

Next Steps

Okay, now that you’ve seen what Azure ML Studio is and how to create one you’re likely wanting to go a little deeper.

Source: Matt Eland
Tags: Creating an Azure Machine Learning Instance
ShareTweet

Get real time update about this post categories directly on your device, subscribe now.

Unsubscribe

Search

No Result
View All Result

Recent News

Absa and Visa Extend Strategic Partnership to Advance Growth and Innovation Across Africa

Absa and Visa Extend Strategic Partnership to Advance Growth and Innovation Across Africa

July 29, 2025
French Telco Orange Hit by Cyber-Attack

French Telco Orange Hit by Cyber-Attack

July 29, 2025
ATC Ghana supports Girls-In-ICT Program

ATC Ghana supports Girls-In-ICT Program

April 25, 2023

About What We Do

itechnewsonline.com

We bring you the best Premium Tech News.

Recent News With Image

Absa and Visa Extend Strategic Partnership to Advance Growth and Innovation Across Africa

Absa and Visa Extend Strategic Partnership to Advance Growth and Innovation Across Africa

July 29, 2025
French Telco Orange Hit by Cyber-Attack

French Telco Orange Hit by Cyber-Attack

July 29, 2025

Recent News

  • Absa and Visa Extend Strategic Partnership to Advance Growth and Innovation Across Africa July 29, 2025
  • French Telco Orange Hit by Cyber-Attack July 29, 2025
  • ATC Ghana supports Girls-In-ICT Program April 25, 2023
  • Vice President Dr. Bawumia inaugurates ICT Hub April 2, 2023
  • Home
  • InfoSec
  • Opinion
  • Africa Tech
  • Data Storage

© Copyright 2026, All Rights Reserved | iTechNewsOnline.Com - Powered by BackUPDataSystems

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In

Add New Playlist

No Result
View All Result
  • Home
  • Tech
  • Africa Tech
  • InfoSEC
  • Data Science
  • Data Storage
  • Business
  • Opinion

© Copyright 2026, All Rights Reserved | iTechNewsOnline.Com - Powered by BackUPDataSystems

Are you sure want to unlock this post?
Unlock left : 0
Are you sure want to cancel subscription?
Go to mobile version