Search results for "stacking"

Ensemble Methods to Reduce Variance and Improve Performance of Deep Learning Neural Networks

Ensemble Learning Methods for Deep Learning Neural Networks

How to Improve Performance By Combining Predictions From Multiple Models. Deep learning neural networks are nonlinear methods. They offer increased flexibility and can scale in proportion to the amount of training data available. A downside of this flexibility is that they learn via a stochastic training algorithm which means that they are sensitive to the […]

Continue Reading
A Gentle Introduction to N-Dimensional Arrays in Python with NumPy

A Gentle Introduction to NumPy Arrays in Python

Arrays are the main data structure used in machine learning. In Python, arrays from the NumPy library, called N-dimensional arrays or the ndarray, are used as the primary data structure for representing data. In this tutorial, you will discover the N-dimensional array in NumPy for representing numerical and manipulating data in Python. After completing this […]

Continue Reading
Understand the Difference Between Return Sequences and Return States for LSTMs in Keras

Difference Between Return Sequences and Return States for LSTMs in Keras

The Keras deep learning library provides an implementation of the Long Short-Term Memory, or LSTM, recurrent neural network. As part of this implementation, the Keras API provides access to both return sequences and return state. The use and difference between these data can be confusing when designing sophisticated recurrent neural network models, such as the […]

Continue Reading
The 5 Step Life-Cycle for Long Short-Term Memory Models in Keras

The 5 Step Life-Cycle for Long Short-Term Memory Models in Keras

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 Long Short-Term Memory (LSTM) Recurrent Neural Networks in Keras and how to make predictions with a trained model. […]

Continue Reading
Applied Machine Learning With Weka Mini-Course

Weka Machine Learning Mini-Course

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 […]

Continue Reading
How to Use Ensemble Machine Learning Algorithms in Weka

How to Use Ensemble Machine Learning Algorithms in Weka

Ensemble algorithms are a powerful class of machine learning algorithm that combine the predictions from multiple models. A benefit of using Weka for applied machine learning is that makes available so many different ensemble machine learning algorithms. In this post you will discover the how to use ensemble machine learning algorithms in Weka. After reading […]

Continue Reading