Category: Deep Learning

Introduction to Deep Learning with Keras (Part 5): Using Callbacks in Keras

In this part of the Deep Learning with Keras series, we will learn some of the most useful concepts. We will cover topics like Callbacks in Keras, saving models and restoring models. You will also learn about Tensorboard visualization which is an important part of Keras callbacks and analyzing and training models. This is the […] ...

Introduction to Deep Learning with Keras (Part 4): Regression using Keras

In this article, we will be using Keras for regression. In classification, we predict the discrete classes of the instances. But in regression, we will be predicting continuous numeric values. We will use Keras to build our deep neural network in this article. This is the fourth part of the series Introduction to Keras Deep Learning.Part […] ...

Introduction to Deep Learning with Keras (Part 2): Keras API

Banner Image

Keras makes approaching deep learning easy, especially for those who are just starting out. In this article, we will learn some of the most important features and functions of Keras along with the Sequential API. This is the second part of the series Introduction to Keras Deep Learning.Part 1: Getting Started with Keras.Part 2: Learning about […] ...

Introduction to Deep Learning with Keras (Part 1): Installing Keras

Banner Image

Starting to learn deep learning can be a really intimidating task. Most people start with traditional machine learning with Scikit-Learn. Then they slowly start to move towards deep learning trying to implement whatever they have learned. Again, many of them start with TensorFlow directly. But it can be really difficult when using only TensorFlow in […] ...