Archive | Deep Learning

Understanding Stateful LSTM Recurrent Neural Networks in Python with Keras

Understanding Stateful LSTM Recurrent Neural Networks in Python with Keras

A powerful and popular recurrent neural network is the long short-term model network or LSTM. It is widely used because the architecture overcomes the vanishing and exposing gradient problem that plagues all recurrent neural networks, allowing very large and very deep networks to be created. Like other recurrent neural networks, LSTM networks maintain state, and […]

Continue Reading
Automatic Object Detection

8 Inspirational Applications of Deep Learning

It is hyperbole to say deep learning is achieving state-of-the-art results across a range of difficult problem domains. A fact, but also hyperbole. There is a lot of excitement around artificial intelligence, machine learning and deep learning at the moment. It is also an amazing opportunity to get on on the ground floor of some really powerful tech. […]

Continue Reading
How To Estimate The Performance of Machine Learning Algorithms in Weka

Deep Learning Courses

It can be difficult to get started in deep learning. Thankfully, a number of universities have opened up their deep learning course material for free, which can be a great jump-start when you are looking to better understand the foundations of deep learning. In this post you will discover the deep learning courses that you […]

Continue Reading
Applied Deep Learning in Python Mini-Course

Applied Deep Learning in Python Mini-Course

Deep learning is a fascinating field of study and the techniques are achieving world class results in a range of challenging machine learning problems. It can be hard to get started in deep learning. Which library should you use and which techniques should you focus on? In this post you will discover a 14-part crash course […]

Continue Reading
Predict Sentiment From Movie Reviews Using Deep Learning

How to Predict Sentiment from Movie Reviews Using Deep Learning (Text Classification)

Sentiment analysis is a natural language processing problem where text is understood, and the underlying intent is predicted. In this post, you will discover how you can predict the sentiment of movie reviews as either positive or negative in Python using the Keras deep learning library. After reading this post, you will know: About the […]

Continue Reading
Examples from the MNIST dataset

Handwritten Digit Recognition Using Convolutional Neural Networks in Python with Keras

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

Continue Reading
Crash Course in Convolutional Neural Networks for Machine Learning

Crash Course in Convolutional Neural Networks for Machine Learning

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 can achieve state-of-the-art results on challenging computer vision and natural language processing tasks. In this post, you will discover […]

Continue Reading