Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Supervised Machine Learning with Python
Supervised Machine Learning with Python

Supervised Machine Learning with Python: Develop rich Python coding practices while exploring supervised machine learning

Arrow left icon
Profile Icon Taylor Smith
Arrow right icon
zł39.99 zł87.99
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (2 Ratings)
eBook May 2019 162 pages 1st Edition
eBook
zł39.99 zł87.99
Paperback
zł108.99
Subscription
Free Trial
Arrow left icon
Profile Icon Taylor Smith
Arrow right icon
zł39.99 zł87.99
Full star icon Full star icon Full star icon Full star icon Full star icon 5 (2 Ratings)
eBook May 2019 162 pages 1st Edition
eBook
zł39.99 zł87.99
Paperback
zł108.99
Subscription
Free Trial
eBook
zł39.99 zł87.99
Paperback
zł108.99
Subscription
Free Trial

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

Supervised Machine Learning with Python

Implementing Parametric Models

In the previous chapter, we got started with the basics of supervised machine learning. In this chapter, we will dive into the guts of several popular supervised learning algorithms within the parametric modeling family. We'll start this chapter by formally introducing parametric models. Then, we'll introduce two very popular parametric models: linear and logistic regression. We'll spend some time looking at their inner workings and then we'll jump into Python and actually code those workings from scratch.

In this chapter, we will cover the following topics:

  • Parametric models
  • Implementing linear regression from scratch
  • Logistic regression models
  • Implementing logistic regression from scratch
  • The pros and cons of parametric models

Technical requirements

Parametric models

When it comes to supervised learning, there are two families of learning algorithms: parametric and non-parametric. This area also happens to be a hotbed for gatekeeping and opinion-based conjecture regarding which is better. Basically, parametric models are finite-dimensional, which means that they can learn only a defined number of model parameters. Their learning stage is typically categorized by learning some vector theta, which is also called a coefficient. Finally, the learning function is often a known form, which we will clarify later in this section.

Finite-dimensional models

If we go back to our definition of supervised learning, recall that we need to learn some function, f. A parametric...

Implementing linear regression from scratch

Linear regression solves the least squares equation to discover the parameters vector theta. In this section, we will walk through the source code for a linear regression class in the packtml Python library and then cover a brief graphical example in the examples directory.

Before we look at the code, we will be introduced to the interface that backs all of the estimators in the book. It is called BaseSimpleEstimator, which is an abstract class. It's going to enforce only one method, which is predict. Different subclass layers are going to enforce other methods for different model families. But this layer backs all the models that we will build, as everything that we are putting together is supervised, so it's all going to need to be able to predict. You will notice that the signature is prescribed in the dock string. Every...

Logistic regression models

In this section, we will look at logistic regression, which is the first hill-climbing algorithm that we'll cover, and we will have a brief recap of linear regression. We will also look at how logistic regression differs both mathematically and conceptually. Finally, we will learn the core algorithm and explain how it makes predictions.

The concept

Logistic regression is conceptually the inverse of linear regression. What if, rather than a real value, we want a discrete value or a class? We have already seen one example of this type of question early on when we wanted to predict whether or not an email was spam. So, with logistic regression, rather than predicting a real value, we can predict...

Implementing logistic regression from scratch

In this section, we will walk through the implementation of logistic regression in Python within the packtml package. We will start off with a brief recap of what logistic regression seeks to accomplish and then go over the source code and look at an example.

Recall that logistic regression seeks to classify a sample into a discrete category, also known as classification. The logistic transformation allows us to transform the log odds that we get from the inner product of our parameters and X.

Notice that we have three Python files open. One is extmath.py, from within the utils directory inside of packtml; another is simple_logistic.py, from within the regression library in packtml; and the final one is an example_logistic_regression.py file, inside the examples directory and regression.

We will dive right into the code base...

The pros and cons of parametric models

Parametric models have some really convenient attributes. Namely, they are fast to fit, don't require too much data, and can be very easily explained. In the case of linear and logistic regression, it's easy to look at coefficients and directly explain the impact of fluctuating one variable in either direction. In regulated industries, such as finance or insurance, parametric models tend to reign supreme, since they can be easily explained to regulators. Business partners tend to really rely on the insights that the coefficients produce. However, as is evident in what we've already seen so far, they tend to oversimplify. So, as an example, the logistic regression decision boundary that we looked at in the last section assumes a perfect linear boundary between two classes.

It is rare that the real world can be constrained into...

Technical requirements


For this chapter, you will need to install the following software, if you haven't already done so:

  • Jupyter Notebook
  • Anaconda
  • Python

 

 

The code files for this chapter can be found at https://github.com/PacktPublishing/Supervised-Machine-Learning-with-Python.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Delve into supervised learning and grasp how a machine learns from data
  • Implement popular machine learning algorithms from scratch
  • Explore some of the most popular scientific and mathematical libraries in the Python language

Description

Supervised machine learning is used in a wide range of sectors, such as finance, online advertising, and analytics, to train systems to make pricing predictions, campaign adjustments, customer recommendations, and much more by learning from the data that is used to train it and making decisions on its own. This makes it crucial to know how a machine 'learns' under the hood. This book will guide you through the implementation and nuances of many popular supervised machine learning algorithms, and help you understand how they work. You’ll embark on this journey with a quick overview of supervised learning and see how it differs from unsupervised learning. You’ll then explore parametric models, such as linear and logistic regression, non-parametric methods, such as decision trees, and a variety of clustering techniques that facilitate decision-making and predictions. As you advance, you'll work hands-on with recommender systems, which are widely used by online companies to increase user interaction and enrich shopping potential. Finally, you’ll wrap up with a brief foray into neural networks and transfer learning. By the end of this book, you’ll be equipped with hands-on techniques and will have gained the practical know-how you need to quickly and effectively apply algorithms to solve new problems.

Who is this book for?

This book is for anyone who wants to get started with supervised learning. Intermediate knowledge of Python programming along with fundamental knowledge of supervised learning is expected.

What you will learn

  • Crack how a machine learns a concept and generalizes its understanding of new data
  • Uncover the fundamental differences between parametric and non-parametric models
  • Implement and grok several well-known supervised learning algorithms from scratch
  • Work with models in domains such as ecommerce and marketing
  • Get to grips with algorithms such as regression, decision trees, and clustering
  • Build your own models capable of making predictions
  • Delve into the most popular approaches in deep learning such as transfer learning and neural networks

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : May 27, 2019
Length: 162 pages
Edition : 1st
Language : English
ISBN-13 : 9781838823061
Category :
Languages :

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 : May 27, 2019
Length: 162 pages
Edition : 1st
Language : English
ISBN-13 : 9781838823061
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.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
$199.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 zł20 each
Feature tick icon Exclusive print discounts
$279.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 zł20 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 488.97
Python Machine Learning Cookbook
zł157.99
Python Machine Learning
zł221.99
Supervised Machine Learning with Python
zł108.99
Total 488.97 Stars icon
Banner background image

Table of Contents

5 Chapters
First Step Towards Supervised Learning Chevron down icon Chevron up icon
Implementing Parametric Models Chevron down icon Chevron up icon
Working with Non-Parametric Models Chevron down icon Chevron up icon
Advanced Topics in Supervised Machine Learning Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(2 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
charles drotar Aug 08, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book was a great reference for me and is very well written! Given my experience productizing Python ML models, I found this would have been a great educational tools for Data Scientists I had supported in the past. It would have helped to establish better coding practices. Definitely worth the money!
Amazon Verified review Amazon
Aaron Smith Aug 02, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I am not a data scientist/machine learning engineer by any means, but I am interested in the field. This book was super easy to follow along with, and provides great real-world examples. Having previously gone through the Packt video course of the same name, this was a great reference to add to my shelf.
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.