Articles About Machine Learning

Feature Selection For Machine Learning in Python

Last Updated on August 28, 2020 The data features that you use to train your machine learning models have a huge influence on the performance you can achieve. Irrelevant or partially relevant features can negatively impact model performance. In this post you will discover automatic feature selection techniques that you can use to prepare your machine learning data in python with scikit-learn. Kick-start your project with my new book Machine Learning Mastery With Python, including step-by-step tutorials and the Python […]

Read more

Evaluate the Performance of Machine Learning Algorithms in Python using Resampling

Last Updated on August 28, 2020 You need to know how well your algorithms perform on unseen data. The best way to evaluate the performance of an algorithm would be to make predictions for new data to which you already know the answers. The second best way is to use clever techniques from statistics called resampling methods that allow you to make accurate estimates for how well your algorithm will perform on new data. In this post you will discover […]

Read more

Metrics To Evaluate Machine Learning Algorithms in Python

Last Updated on August 31, 2020 The metrics that you choose to evaluate your machine learning algorithms are very important. Choice of metrics influences how the performance of machine learning algorithms is measured and compared. They influence how you weight the importance of different characteristics in the results and your ultimate choice of which algorithm to choose. In this post, you will discover how to select and use different machine learning performance metrics in Python with scikit-learn. Kick-start your project […]

Read more

Evaluate the Performance Of Deep Learning Models in Keras

Last Updated on August 27, 2020 Keras is an easy to use and powerful Python library for deep learning. There are a lot of decisions to make when designing and configuring your deep learning models. Most of these decisions must be resolved empirically through trial and error and evaluating them on real data. As such, it is critically important to have a robust way to evaluate the performance of your neural networks and deep learning models. In this post you […]

Read more

Spot-Check Classification Machine Learning Algorithms in Python with scikit-learn

Last Updated on August 28, 2020 Spot-checking is a way of discovering which algorithms perform well on your machine learning problem. You cannot know which algorithms are best suited to your problem before hand. You must trial a number of methods and focus attention on those that prove themselves the most promising. In this post you will discover 6 machine learning algorithms that you can use when spot checking your classification problem in Python with scikit-learn. Kick-start your project with […]

Read more

Spot-Check Regression Machine Learning Algorithms in Python with scikit-learn

Last Updated on August 28, 2020 Spot-checking is a way of discovering which algorithms perform well on your machine learning problem. You cannot know which algorithms are best suited to your problem before hand. You must trial a number of methods and focus attention on those that prove themselves the most promising. In this post you will discover 6 machine learning algorithms that you can use when spot checking your regression problem in Python with scikit-learn. Kick-start your project with […]

Read more

Use Keras Deep Learning Models with Scikit-Learn in Python

Last Updated on August 27, 2020 Keras is one of the most popular deep learning libraries in Python for research and development because of its simplicity and ease of use. The scikit-learn library is the most popular library for general machine learning in Python. In this post you will discover how you can use deep learning models from Keras with the scikit-learn library in Python. This will allow you to leverage the power of the scikit-learn library for tasks like […]

Read more

How To Compare Machine Learning Algorithms in Python with scikit-learn

Last Updated on August 28, 2020 It is important to compare the performance of multiple different machine learning algorithms consistently. In this post you will discover how you can create a test harness to compare multiple different machine learning algorithms in Python with scikit-learn. You can use this test harness as a template on your own machine learning problems and add more and different algorithms to compare. Kick-start your project with my new book Machine Learning Mastery With Python, including […]

Read more

Multi-Class Classification Tutorial with the Keras Deep Learning Library

Last Updated on August 27, 2020 Keras is a Python library for deep learning that wraps the efficient numerical libraries Theano and TensorFlow. In this tutorial, you will discover how you can use Keras to develop and evaluate neural network models for multi-class classification problems. After completing this step-by-step tutorial, you will know: How to load data from CSV and make it available to Keras. How to prepare multi-class classification data for modeling with neural networks. How to evaluate Keras […]

Read more

Ensemble Machine Learning Algorithms in Python with scikit-learn

Last Updated on August 28, 2020 Ensembles can give you a boost in accuracy on your dataset. In this post you will discover how you can create some of the most powerful types of ensembles in Python using scikit-learn. This case study will step you through Boosting, Bagging and Majority Voting and show you how you can continue to ratchet up the accuracy of the models on your own datasets. Kick-start your project with my new book Machine Learning Mastery […]

Read more
1 143 144 145 146 147 226