Book Image

Effective Amazon Machine Learning

By : Alexis Perrier
Book Image

Effective Amazon Machine Learning

By: Alexis Perrier

Overview of this book

Predictive analytics is a complex domain requiring coding skills, an understanding of the mathematical concepts underpinning machine learning algorithms, and the ability to create compelling data visualizations. Following AWS simplifying Machine learning, this book will help you bring predictive analytics projects to fruition in three easy steps: data preparation, model tuning, and model selection. This book will introduce you to the Amazon Machine Learning platform and will implement core data science concepts such as classification, regression, regularization, overfitting, model selection, and evaluation. Furthermore, you will learn to leverage the Amazon Web Service (AWS) ecosystem for extended access to data sources, implement realtime predictions, and run Amazon Machine Learning projects via the command line and the Python SDK. Towards the end of the book, you will also learn how to apply these services to other problems, such as text mining, and to more complex datasets.
Table of Contents (17 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Dedication
Preface

Going beyond classification and regression


Although Amazon ML is set to solve classification and regression problems, the service can also be used for other supervised data science problems. In this last section, we looked at two classic problems: Recommender systems and named entity recognition.

  • Making recommendations: A recommender system seeks to predict the rating or preference that a user would give to an item. There are several strategies to build recommender systems: 
  • Collaborative filtering: This involves using the behavioral patterns of similar users to predict a given user's preferences. It's the other people also bought this approach.
  • Content-based filtering: This is the strategy where the features of a certain content are used to group similar products or content. 

To use Amazon ML for recommendations, you can frame your solution as a content-based recommendation problem. One way to do this is to extract features for your products and users and build a training dataset where the...