Rapidly Accelerate Your Progress in Applied Machine Learning With Weka

Last Updated on August 22, 2019 Why start with Weka over another tool like the R environment or Python for applied machine learning? In this post you will discover why Weka is the perfect platform for beginners interested in rapidly getting good at applied machine learning. After reading this post you will know: Why getting started in applied machine learning is hard. The one most important thing to focus on when getting started in applied machine learning. How to make best […]

Read more

How to Check-Point Deep Learning Models in Keras

Last Updated on August 27, 2020 Deep learning models can take hours, days or even weeks to train. If the run is stopped unexpectedly, you can lose a lot of work. In this post you will discover how you can check-point your deep learning models during training in Python using the Keras library. Kick-start your project with my new book Deep Learning With Python, including step-by-step tutorials and the Python source code files for all examples. Let’s get started. Update […]

Read more

How to Download and Install the Weka Machine Learning Workbench

Last Updated on August 22, 2019 The Weka machine learning workbench is a powerful and yet easy to use platform for predictive modeling. In this post you will discover how you can install Weka on your workstation fast, and get started with machine learning. After reading this post you will know: How to install the all-in-one version of Weka for Windows or Mac. How to install Java and Weka separately on Windows or Mac. How to install Weka on Linux […]

Read more

Display Deep Learning Model Training History in Keras

Last Updated on October 3, 2019 You can learn a lot about neural networks and deep learning models by observing their performance over time during training. Keras is a powerful library in Python that provides a clean interface for creating deep learning models and wraps the more technical TensorFlow and Theano backends. In this post you will discover how you can review and visualize the performance of deep learning models over time during training in Python with Keras. Kick-start your […]

Read more

Dropout Regularization in Deep Learning Models With Keras

Last Updated on August 27, 2020 A simple and powerful regularization technique for neural networks and deep learning models is dropout. In this post you will discover the dropout regularization technique and how to apply it to your models in Python with Keras. After reading this post you will know: How the dropout regularization technique works. How to use dropout on your input layers. How to use dropout on your hidden layers. How to tune the dropout level on your […]

Read more

A Tour of the Weka Machine Learning Workbench

Last Updated on August 22, 2019 Weka is an easy to use and powerful machine learning platform. It provides a large number of machine learning algorithms, feature selection methods and data preparation filters. In this post you will discover the Weka machine learning workbench and take a tour of the key interfaces that you can use on your machine learning projects. After reading this post you will know about: The interfaces supported by the Weka machine learning workbench. Those interfaces that […]

Read more

Using Learning Rate Schedules for Deep Learning Models in Python with Keras

Last Updated on August 27, 2020 Training a neural network or large deep learning model is a difficult optimization task. The classical algorithm to train neural networks is called stochastic gradient descent. It has been well established that you can achieve increased performance and faster training on some problems by using a learning rate that changes during training. In this post you will discover how you can use different learning rate schedules for your neural network models in Python using […]

Read more

How To Load CSV Machine Learning Data in Weka

Last Updated on August 22, 2019 You must be able to load your data before you can start modeling it. In this post you will discover how you can load your CSV dataset in Weka. After reading this post, you will know: About the ARFF file format and how it is the default way to represent data in Weka. How to load a CSV file in the Weka Explorer and save it in ARFF format. How to load a CSV […]

Read more

Crash Course in Convolutional Neural Networks for Machine Learning

Last Updated on August 19, 2019 Convolutional Neural Networks are a powerful artificial neural network technique. These networks preserve the spatial structure of the problem and were developed for object recognition tasks such as handwritten digit recognition. They are popular because people are achieving state-of-the-art results on difficult computer vision and natural language processing tasks. In this post you will discover Convolutional Neural Networks for deep learning, also called ConvNets or CNNs. After completing this crash course you will know: […]

Read more

Handwritten Digit Recognition using Convolutional Neural Networks in Python with Keras

Last Updated on August 27, 2020 A popular demonstration of the capability of deep learning techniques is object recognition in image data. The “hello world” of object recognition for machine learning and deep learning is the MNIST dataset for handwritten digit recognition. In this post you will discover how to develop a deep learning model to achieve near state of the art performance on the MNIST handwritten digit recognition task in Python using the Keras deep learning library. After completing […]

Read more
1 782 783 784 785 786 905