Book Image

Machine Learning for Data Mining

By : Jesus Salcedo
Book Image

Machine Learning for Data Mining

By: Jesus Salcedo

Overview of this book

Machine learning (ML) combined with data mining can give you amazing results in your data mining work by empowering you with several ways to look at data. This book will help you improve your data mining techniques by using smart modeling techniques. This book will teach you how to implement ML algorithms and techniques in your data mining work. It will enable you to pair the best algorithms with the right tools and processes. You will learn how to identify patterns and make predictions with minimal human intervention. You will build different types of ML models, such as the neural network, the Support Vector Machines (SVMs), and the Decision tree. You will see how all of these models works and what kind of data in the dataset they are suited for. You will learn how to combine the results of different models in order to improve accuracy. Topics such as removing noise and handling errors will give you an added edge in model building and optimization. By the end of this book, you will be able to build predictive models and extract information of interest from the dataset
Table of Contents (7 chapters)

Meta-level modeling

Meta-level modeling is building a model based on predictions or results from another model. In the previous example, we saw how to create propensity scores for our Chaid model. In this section, we will see how you can extract results from the Chaid model and feed them into a Neural Net model, and this will enable us to improve the results from a Neural Net model.

To do this, follow these steps:

  1. Connect the partition node to the Neural Net node from the modeling palette.
  2. Run the Neural Net model by changing the Random seed to 5000 from the Advanced options under the Build tab and click on Run. Now connect the generated Chaid model to the generated Neural Net model.
  3. Now, use the Analysis node to see the level of accuracy of these models.
  4. You will get the following results:

We can see that the accuracy of both the models is somewhat similar, so now we will...