Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Hands-On Artificial Intelligence on Amazon Web Services
Hands-On Artificial Intelligence on Amazon Web Services

Hands-On Artificial Intelligence on Amazon Web Services: Decrease the time to market for AI and ML applications with the power of AWS

Arrow left icon
Profile Icon Tripuraneni Profile Icon Song
Arrow right icon
AU$24.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2 (6 Ratings)
Paperback Oct 2019 426 pages 1st Edition
eBook
AU$14.99 AU$53.99
Paperback
AU$67.99
Subscription
Free Trial
Renews at AU$24.99p/m
Arrow left icon
Profile Icon Tripuraneni Profile Icon Song
Arrow right icon
AU$24.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2 (6 Ratings)
Paperback Oct 2019 426 pages 1st Edition
eBook
AU$14.99 AU$53.99
Paperback
AU$67.99
Subscription
Free Trial
Renews at AU$24.99p/m
eBook
AU$14.99 AU$53.99
Paperback
AU$67.99
Subscription
Free Trial
Renews at AU$24.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $24.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Hands-On Artificial Intelligence on Amazon Web Services

Introduction to Artificial Intelligence on Amazon Web Services

In this chapter, we will start with a high-level overview of artificial intelligence (AI), including its history and the broad set of methods that it uses. Then, we will take a look at a few applications of AI that have the potential to profoundly change our world. With growing interests in AI, many companies, including Amazon, are offering a plethora of tools and services to help developers create intelligent-enabled applications. We will provide a high-level overview of AI offerings from Amazon Web Services, and we will also provide our guidance on how to best leverage them. Being a hands-on book, we will quickly dive into intelligent-enabled application development with Amazon Web Services.

We will cover the following topics:

  • Overview of AI and its applications.
  • Understanding the different types of Amazon Web Services...

Technical requirements

What is AI?

AI is an umbrella term that describes a branch of computer science that aims to create intelligent agents. The field of AI is highly technical and specialized; there is a broad set of theories, methods, and technologies in AI that allow computers to see (computer vision), to hear (speech recognition), to understand (natural language processing), to speak (text-to-speech), and to think (knowledge reasoning and planning).

It may seem that AI is a buzzword of our current times, but it has existed since the 1950s, when early work on artificial neural networks that mimic led the human brain stirred up excitement for thinking machines. With all the fanfare it receives in the media today, it is hard to believe that this field had to endure two AI winters, where interest in AI research and development dwindled. Today, AI has become popular again, thanks to the increased volume...

Overview of AWS AI offerings

To better understand AWS AI offerings, we can group the services into two main groups.

The following diagram shows the subsets of AWS AI capabilities and AWS ML platforms that we will be covering in this book, organized by the two groups:

The list of AWS ML services is growing every year. For example, Amazon Personalize, Forecast, Textract, and DeepRacer were announced at the AWS re:Invent 2018 conference, and were in limited preview. These services became available for general use around mid 2019.

The first group in the preceding diagram are the AWS AI capabilities. These services are built on top of AWS pre-trained AI technologies. They work right out of the box to provide ready-made intelligence for your applications. You do not need to understand the AI techniques that make them tick, and you do not need to maintain the infrastructure to host...

Getting familiar with the AWS CLI

The AWS CLI is a tool that allows you to interact with AWS services by issuing commands from your Terminal shell. Earlier in this chapter, we interacted with a few AWS services through the web-based AWS Management Console. While the web console is the easiest interface for new users to get familiar with AWS, it can be cumbersome to use during the software development process. With the AWS CLI tool, you get all of the same functionalities as the web console but at your fingertips in the Terminal shell, where most of your development tools reside. This way, your development process is more fluid without the context switching to and from the browser.

The AWS CLI is primarily distributed via the Python package manager; therefore, you need to install Python on your development machine first. Note that we will be using Python for the development of...

Using Python for AI applications

Python is one of the most popular programming languages. Thanks to its popularity with the data science and ML community, Python is also one of the fastest-growing programming languages. There is a large number of add-on libraries from its developers and the open source community. These libraries enable Python developers to do almost anything, from data analytics to deep neural networks, from simple scripting to web application development.

For AI and ML, Python is the de facto language. There's the popular scikit-learn library that gives developers access to many useful ML algorithms. There are also many libraries for deep neural networks, such as MXNet and TensorFlow.

We will be using Python for every hands-on projects throughout this book:

  • In the first half of this book, we will create intelligent-enabled solutions using AWS AI services...

First project with the AWS SDK

Now, let's write our first Python application that will detect the objects in the images that are stored in an S3 bucket. To do this, we will leverage boto3 to interact with both the Amazon S3 service and the Amazon Rekognition service:

You can use any text editor, or your favorite Python Integrated Development Environment (IDE), to create the Python source files. If you don't have a preference, we recommend that you check out JetBrains PyCharm, https://www.jetbrains.com/pycharm/, a cross-platform Python IDE that provides code editing, code analysis, a graphical debugger, an integrated unit tester, and integration with a version control system.
  1. The first source file that we will create is storage_service.py. Create this source file in the ObjectDetectionDemo directory. The following is the Python code for storage_service.py:
import boto3...

Summary

In this chapter, we learned that AI has existed for a long time, but it is becoming popular again due to the renewed interested in ML, more specifically, with artificial neural networks. We looked at a few real-world applications of AI and ML. We got an overview of the two groups of AI offerings from AWS; the AWS AI services that give you a quick lift when developing intelligent-enabled applications, and the AWS ML platforms that allow you to build custom AI capabilities that are tailored to your application. We recommended that you try to leverage the provided AWS AI services first, and only develop custom AI capabilities if you have a specialized need and you have a data-competitive advantage.

We got familiar with several services on AWS through hands-on experience, including the AI services and the other complimentary cloud services. We also set up our local development...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Explore popular machine learning and deep learning services with their underlying algorithms
  • Discover readily available artificial intelligence(AI) APIs on AWS like Vision and Language Services
  • Design robust architectures to enable experimentation, extensibility, and maintainability of AI apps

Description

From data wrangling through to translating text, you can accomplish this and more with the artificial intelligence and machine learning services available on AWS. With this book, you’ll work through hands-on exercises and learn to use these services to solve real-world problems. You’ll even design, develop, monitor, and maintain machine and deep learning models on AWS. The book starts with an introduction to AI and its applications in different industries, along with an overview of AWS artificial intelligence and machine learning services. You’ll then get to grips with detecting and translating text with Amazon Rekognition and Amazon Translate. The book will assist you in performing speech-to-text with Amazon Transcribe and Amazon Polly. Later, you’ll discover the use of Amazon Comprehend for extracting information from text, and Amazon Lex for building voice chatbots. You will also understand the key capabilities of Amazon SageMaker such as wrangling big data, discovering topics in text collections, and classifying images. Finally, you’ll cover sales forecasting with deep learning and autoregression, before exploring the importance of a feedback loop in machine learning. By the end of this book, you will have the skills you need to implement AI in AWS through hands-on exercises that cover all aspects of the ML model life cycle.

Who is this book for?

This book is for data scientists, machine learning developers, deep learning researchers, and artificial intelligence enthusiasts who want to harness the power of AWS to implement powerful artificial intelligence solutions. A basic understanding of machine learning concepts is expected.

What you will learn

  • Gain useful insights into different machine and deep learning models
  • Build and deploy robust deep learning systems to production
  • Train machine and deep learning models with diverse infrastructure specifications
  • Scale AI apps without dealing with the complexity of managing the underlying infrastructure
  • Monitor and Manage AI experiments efficiently
  • Create AI apps using AWS pre-trained AI services

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 04, 2019
Length: 426 pages
Edition : 1st
Language : English
ISBN-13 : 9781789534146
Category :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $24.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Oct 04, 2019
Length: 426 pages
Edition : 1st
Language : English
ISBN-13 : 9781789534146
Category :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
AU$24.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
AU$249.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts
AU$349.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just AU$5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total AU$ 197.97
Python Machine Learning
AU$75.99
Hands-On Artificial Intelligence on Amazon Web Services
AU$67.99
Mastering Machine Learning on AWS
AU$53.99
Total AU$ 197.97 Stars icon
Banner background image

Table of Contents

18 Chapters
Section 1: Introduction and Anatomy of a Modern AI Application Chevron down icon Chevron up icon
Introduction to Artificial Intelligence on Amazon Web Services Chevron down icon Chevron up icon
Anatomy of a Modern AI Application Chevron down icon Chevron up icon
Section 2: Building Applications with AWS AI Services Chevron down icon Chevron up icon
Detecting and Translating Text with Amazon Rekognition and Translate Chevron down icon Chevron up icon
Performing Speech-to-Text and Vice Versa with Amazon Transcribe and Polly Chevron down icon Chevron up icon
Extracting Information from Text with Amazon Comprehend Chevron down icon Chevron up icon
Building a Voice Chatbot with Amazon Lex Chevron down icon Chevron up icon
Section 3: Training Machine Learning Models with Amazon SageMaker Chevron down icon Chevron up icon
Working with Amazon SageMaker Chevron down icon Chevron up icon
Creating Machine Learning Inference Pipelines Chevron down icon Chevron up icon
Discovering Topics in Text Collection Chevron down icon Chevron up icon
Classifying Images Using Amazon SageMaker Chevron down icon Chevron up icon
Sales Forecasting with Deep Learning and Auto Regression Chevron down icon Chevron up icon
Section 4: Machine Learning Model Monitoring and Governance Chevron down icon Chevron up icon
Model Accuracy Degradation and Feedback Loops Chevron down icon Chevron up icon
What Is Next? Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2
(6 Ratings)
5 star 66.7%
4 star 16.7%
3 star 0%
2 star 0%
1 star 16.7%
Filter icon Filter
Top Reviews

Filter reviews by




Amazon Customer Dec 30, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is a fantastic book which has helped me a lot in my studies of machine learning on AWS. The book is detailed, easy to understand, and provides clear and comprehensive instruction on designing machine learning applications with AWS. I highly recommend this book to any data scientists, researchers, or developers looking to further their understanding in the area.
Amazon Verified review Amazon
Mesfin D. Dec 26, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is a great book covering different topics in Machine Learning and showing how one can use Amazon Web Services infrastructure and tools to deploy an end-to-end application. Starting from creating AWS account creation, it guides readers to implement and launch their ML application covering different topics such as object detection, text and speech processing. I highly recommend it.
Amazon Verified review Amazon
Jayaprakash Bandu Dec 29, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Has very well written content for beginners starting using AWS for AI. It shows usage of Chalice to create and deploy application. It then has setting up and using the Amazon services Rekognition, Lex and Sage Maker. In lex it shows about creating and using Intents to develop a Chatbot. In sgaemaker it first goes about training with object2vec algorithm.Gives step by step guide to make your own models for texts as well as images. It then introduces using DeepAr service and XGboost algorithm which keeps the reader to try out more advanced concepts with the services.
Amazon Verified review Amazon
Amazon Customer Dec 30, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is a very well organized book for anyone wanting to go from 0 to 100 in quick time on aws. While there is a ton of content on aws this book is especially appealing and useful given its structure and practical examples and try outs..highly recommended for folks aspiring to work on aws.
Amazon Verified review Amazon
kevin sunil Nov 21, 2019
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
It's a great book with a lot of knowledge on different machine and deep learning models. It's also into creation of AI apps using AWS. This is a good buy!
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.