How To Work Through a Multi-Class Classification Project in Weka

Last Updated on August 22, 2019 The Weka machine learning workbench is so easy to use that working through a machine learning project can be a lot of fun. In this post you will complete your first machine learning project using Weka, end-to-end. This gentle introduction to working through a project will tie together the key steps you need to complete when working through machine learning project in Weka. After completing this project, you will know: How to analyze a […]

Read more

How To Work Through a Binary Classification Project in Weka Step-By-Step

Last Updated on December 11, 2019 The fastest way to get good at applied machine learning is to practice on end-to-end projects. In this post you will discover how to work through a binary classification problem in Weka, end-to-end. After reading this post you will know: How to load a dataset and analyze the loaded data. How to create multiple different transformed views of the data and evaluate a suite of algorithms on each. How to finalize and present the […]

Read more

How to Grid Search Hyperparameters for Deep Learning Models in Python With Keras

Last Updated on August 27, 2020 Hyperparameter optimization is a big part of deep learning. The reason is that neural networks are notoriously difficult to configure and there are a lot of parameters that need to be set. On top of that, individual models can be very slow to train. In this post you will discover how you can use the grid search capability from the scikit-learn python machine learning library to tune the hyperparameters of Keras deep learning models. After […]

Read more

How to Work Through a Regression Machine Learning Project in Weka

Last Updated on August 22, 2019 The fastest way to get good at applied machine learning is to practice on end-to-end projects. In this post you will discover how to work through a regression problem in Weka, end-to-end. After reading this post you will know: How to load and analyze a regression dataset in Weka. How to create multiple different transformed views of the data and evaluate a suite of algorithms on each. How to finalize and present the results […]

Read more

5 Step Life-Cycle for Neural Network Models in Keras

Last Updated on August 27, 2020 Deep learning neural networks are very easy to create and evaluate in Python with Keras, but you must follow a strict model life-cycle. In this post you will discover the step-by-step life-cycle for creating, training and evaluating deep learning neural networks in Keras and how to make predictions with a trained model. After reading this post you will know: How to define, compile, fit and evaluate a deep learning neural network in Keras. How […]

Read more

How to Get More Help For the Weka Machine Learning Workbench

Last Updated on August 15, 2020 The Weka machine learning workbench is an easy to use and powerful platform for applied machine learning. Even though it is easy to use, you may still require some help or advice when using it on your own problems. In this post you will discover resources that you can use to get more help with Weka. After reading this post you will know: About the documentation that is installed with Weka on your workstation. […]

Read more

Weka Machine Learning Mini-Course

Last Updated on August 22, 2019 Become A Machine Learning Practitioner in 14-Days Machine learning is a fascinating study, but how do you actually use it on your own problems? You may be confused as to how best prepare your data for machine learning, which algorithms to use or how to choose one model over another. In this post you will discover a 14-part crash course into applied machine learning using the Weka platform without a single mathematical equation or line […]

Read more

A Gentle Introduction to XGBoost for Applied Machine Learning

Last Updated on April 22, 2020 XGBoost is an algorithm that has recently been dominating applied machine learning and Kaggle competitions for structured or tabular data. XGBoost is an implementation of gradient boosted decision trees designed for speed and performance. In this post you will discover XGBoost and get a gentle introduction to what is, where it came from and how you can learn more. After reading this post you will know: What XGBoost is and the goals of the […]

Read more

How to Develop Your First XGBoost Model in Python with scikit-learn

Last Updated on August 27, 2020 XGBoost is an implementation of gradient boosted decision trees designed for speed and performance that is dominative competitive machine learning. In this post you will discover how you can install and create your first XGBoost model in Python. After reading this post you will know: How to install XGBoost on your system for use in Python. How to prepare data and train your first XGBoost model. How to make predictions using your XGBoost model. Kick-start […]

Read more

Data Preparation for Gradient Boosting with XGBoost in Python

Last Updated on August 27, 2020 XGBoost is a popular implementation of Gradient Boosting because of its speed and performance. Internally, XGBoost models represent all problems as a regression predictive modeling problem that only takes numerical values as input. If your data is in a different form, it must be prepared into the expected format. In this post, you will discover how to prepare your data for using with gradient boosting with the XGBoost library in Python. After reading this post […]

Read more
1 801 802 803 804 805 920