Book Image

Machine Learning Solutions

Book Image

Machine Learning Solutions

Overview of this book

Machine learning (ML) helps you find hidden insights from your data without the need for explicit programming. This book is your key to solving any kind of ML problem you might come across in your job. You’ll encounter a set of simple to complex problems while building ML models, and you'll not only resolve these problems, but you’ll also learn how to build projects based on each problem, with a practical approach and easy-to-follow examples. The book includes a wide range of applications: from analytics and NLP, to computer vision domains. Some of the applications you will be working on include stock price prediction, a recommendation engine, building a chat-bot, a facial expression recognition system, and many more. The problem examples we cover include identifying the right algorithm for your dataset and use cases, creating and labeling datasets, getting enough clean data to carry out processing, identifying outliers, overftting datasets, hyperparameter tuning, and more. Here, you'll also learn to make more timely and accurate predictions. In addition, you'll deal with more advanced use cases, such as building a gaming bot, building an extractive summarization tool for medical documents, and you'll also tackle the problems faced while building an ML model. By the end of this book, you'll be able to fine-tune your models as per your needs to deliver maximum productivity.
Table of Contents (19 chapters)
Machine Learning Solutions
Foreword
Contributors
Preface
Index

Introducing the problem statement


In this chapter, we will build an engine that can recommend jobs to any user. This is the simplest goal we want to achieve. How we are going to build it? In order to answer this question, let me give you an idea about what kind of approaches we will take in order to build a job recommendation system.

For our baseline approach, we will scrape resumes of dummy users and try to build a job recommendation engine based on the scraped dataset. The reason we are scraping the dataset is that, most of the time, there will not be any dataset available for many data science applications. Suppose you are in a position where you have not found any dataset. What you will do then? I want to provide a solution for these kinds of scenarios. So, you will learn how to scrape the data and build the baseline solution.

In the revised approach, we will be using a dataset hosted by Kaggle. Using the content-based approach, we will be building a job recommendation engine. For the...