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

eBook
€8.99 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

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 : 9781789531473
Category :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

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

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.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
€189.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 €5 each
Feature tick icon Exclusive print discounts
€264.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 €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 108.97
Python Machine Learning
€41.99
Hands-On Artificial Intelligence on Amazon Web Services
€36.99
Mastering Machine Learning on AWS
€29.99
Total 108.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

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.