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

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

Image Augmentation for Deep Learning With Keras

Last Updated on September 13, 2019 Data preparation is required when working with neural network and deep learning models. Increasingly data augmentation is also required on more complex object recognition tasks. In this post you will discover how to use data preparation and data augmentation with your image datasets when developing and evaluating deep learning models in Python with Keras. After reading this post, you will know: About the image augmentation API provide by Keras and how to use it […]

Read more

Object Classification with CNNs using the Keras Deep Learning Library

Last Updated on August 27, 2020 Keras is a Python library for deep learning that wraps the powerful numerical libraries Theano and TensorFlow. A difficult problem where traditional neural networks fall down is called object recognition. It is where a model is able to identify the objects in images. In this post, you will discover how to develop and evaluate deep learning models for object recognition in Keras. After completing this tutorial you will know: About the CIFAR-10 object classification […]

Read more

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

Last Updated on August 27, 2020 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 IMDB sentiment analysis problem for natural language processing and how to load it in Keras. How to use word […]

Read more

Applied Deep Learning in Python Mini-Course

Last Updated on December 11, 2019 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 into deep learning in Python with the easy to use and powerful Keras library. This mini-course is intended for […]

Read more

Deep Learning Courses

Last Updated on August 19, 2019 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 can browse and work through to develop and cement your understanding of the field. This is a long post […]

Read more

8 Inspirational Applications of Deep Learning

Last Updated on August 19, 2019 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. I try hard to convince friends, colleagues and students to get started in deep learning and bold statements like the […]

Read more

Understanding Stateful LSTM Recurrent Neural Networks in Python with Keras

Last Updated on August 27, 2020 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 the specifics of how this is implemented in Keras framework can be confusing. In this post you will discover […]

Read more
1 6 7 8 9 10 12