Skip to content

A mini-project that demonstrates how to use Amazon SageMaker to build, train, and deploy a Machine Learning (ML).

Notifications You must be signed in to change notification settings

KOrfanakis/Amazon_SageMaker_Tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

Building, Training, and Deploying a Machine Learning Model with Amazon SageMaker – A Short Tutorial



Table of Contents:


🎯 Motivation

The aim of this mini-project is to teach how to use Amazon SageMaker to build, train, and deploy a Machine Learning (ML) model using the XGBoost algorithm. Specifically, we will develop a model that predicts whether a customer will subscribe to a product (bank term deposit) offered by a bank.

The code is adapted, with minor changes, from the hands-on tutorial 'Build, train, and deploy a machine learning model with Amazon SageMaker' provided by AWS. I have also reorganised the code to improve readability and added text in each section to make this tutorial easier to follow. Note that this is a short tutorial on using SageMaker; many aspects of the typical ML pipeline are not implemented.


📚 Introduction to Amazon SageMaker

What is it?

Amazon SageMaker is a fully managed AWS cloud service for data science and ML workflows. With SageMaker, data scientists and developers can quickly and easily build and train ML models and directly deploy them into a production-ready hosted environment.

SageMaker provides an integrated Jupyter authoring notebook instance for easy access to data sources for exploration and analysis so that the user doesn’t have to manage servers. It also provides common ML algorithms optimised to run efficiently against extremely large data in a distributed environment. With native support for bring-your-own-algorithms and frameworks, SageMaker offers flexible distributed training options that adjust to the user’s specific workflows and needs.



Why use it?

There are several benefits to using cloud services such as SageMaker for data science and machine/deep learning (ML/DL) tasks. Firstly, cloud computing offers increased speed, scalability, and flexibility when it comes to computing needs:

  • Speed: By leveraging technologies such as clusters of GPUs and CPUs to perform complex operations on compute-intensive tasks, users can design, develop and train ML/DL applications faster.
  • Scalability: With the wide range of on-demand resources available through the cloud, users can deploy virtually unlimited resources to tackle complex tasks of any size.
  • Flexibility: Several Deep learning frameworks (such as TensorFlow, Torch, Keras etc.) can be run on the cloud, allowing users to use packaged libraries of deep learning algorithms best suited for a particular use case, whether it’s for web, mobile or connected devices.

Additionally, the cloud makes ML/DL more accessible. SageMaker, in particular, enables more people and businesses to innovate with ML through a wide variety of tools, such as integrated development environments for data scientists and no-code visual interfaces for business analysts.

Finally, the cloud’s pay-as-you-go model means that users typically pay only for cloud services they use. This approach helps businesses lower operating costs, run their infrastructure more efficiently, and scale as the business needs change.

For more information, please refer to the following articles:

[1] What Is Amazon SageMaker?
[2] Amazon SageMaker
[3] Deep Learning on AWS


💼 Business Objective

In an imaginary scenario, we are hired as data scientists by a banking institution that has compiled a dataset related to their marketing campaign. The dataset contains information on customer demographics, previous responses to marketing events, and external factors (see section Data).

The data also contains a target variable which identifies whether a previous customer is enrolled for a product offered by the bank. Our task is to develop an ML model that predicts whether a new customer will enrol based on their individual information and other external factors included in the dataset. The bank aims to use our data to target customers less likely to subscribe and offer them special deals and services.


📊 Data

The model will be trained on the Bank Marketing Data Set that contains information on customer demographics, previous responses to marketing events, and external factors (such as employment variation rate and consumer confidence index). The data is related to direct marketing campaigns of a Portuguese banking institution. The marketing campaigns were based on phone calls. Often, more than one contact with the same client was required to access if the product (bank term deposit) would be (‘yes’) or not (‘no’) subscribed.

The data has been labelled for our convenience. The column ‘y_yes’ is our target variable as it identifies whether a customer is enrolled for a product offered by the bank. It is a binary feature (1 for ‘yes’, 0 for ‘no’), making this a binary classification task.

The original version of this dataset is publicly available from the Machine Learning Repository curated by the University of California, Irvine.


🛠 Setup

The quickest setup to run the notebook requires:

  • An AWS account
  • Proper IAM User and Role setup
  • An Amazon SageMaker Notebook Instance
  • An S3 bucket (created when running the code in the Jupyter notebook)

To run the notebook, you need to get set up with a SageMaker notebook environment and clone in this repository. For instructions, please visit this link that demonstrates how to run code wither in an AWS hosted event or with your own AWS account.


📕 References

The principal resource for this mini-project is the hands-on tutorial 'Build, train, and deploy a machine learning model with Amazon SageMaker' provided by AWS.

Other resources include:

[1] Cloud computing with AWS
[2] What Is Amazon SageMaker? and references therein
[3] Get Started with Amazon SageMaker Notebook Instances and references therein (specifically, the seven steps below that Topics section)


📞 Feedback

If you have any feedback or ideas to improve this project, feel free to contact me via:

Twitter LinkedIn

About

A mini-project that demonstrates how to use Amazon SageMaker to build, train, and deploy a Machine Learning (ML).

Topics

Resources

Stars

Watchers

Forks