Book Image

Python Machine Learning Solutions [Video]

By : Prateek Joshi
Book Image

Python Machine Learning Solutions [Video]

By: Prateek Joshi

Overview of this book

<p>Machine learning is increasingly pervasive in the modern data-driven world. It is used extensively across many fields such as search engines, robotics, self-driving cars, and more.</p> <p>With this course, you will learn how to perform various machine learning tasks in different environments. We’ll start by exploring a range of real-life scenarios where machine learning can be used, and look at various building blocks. Throughout the course, you’ll use a wide variety of machine learning algorithms to solve real-world problems and use Python to implement these algorithms.</p> <p>You’ll discover how to deal with various types of data and explore the differences between machine learning paradigms such as supervised and unsupervised learning. We also cover a range of regression techniques, classification algorithms, predictive modelling, data visualization techniques, recommendation engines, and more with the help of real-world examples.</p> <h1>Style and Approach</h1> <p>These independent videos teach you how to perform various machine learning tasks in different environments. Each of the video in the section will cover a real-life scenario.</p>
Table of Contents (12 chapters)
Chapter 6
Analyzing Text Data
Content Locked
Section 5
Building a Bag-of-Words Model
When we deal with text documents that contain millions of words, we need to convert them into some kind of numeric representation so as to make them usable for machine learning algorithms. A bag-of- words model is what helps us achieve this task quite easily. - Divide the text data into chunks - Extract a document term matrix - Extract vocabulary from the vectorizer object