Tag: Keras

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