Tag: Deep Learning

Deep Learning with PyTorch: Installing PyTorch and Covering the Basics

PyTorch is an open-source machine learning library. It is based on Torch library but specifically written for Python language. Recently PyTorch has been gaining much more traction and popularity for deep learning research and development alike. The best thing about PyTorch is that it is very python-like and intuitive. If you know the Python programming […] ...

Introduction to Computer Vision with Deep Learning

Banner Image

In this article, we will go through image classification using deep learning. Image classification is a sub-field of computer vision. There have been a lot of advances in deep learning using neural networks. And because of that computer vision has seen many applications and advances in recent years. Image classification, image recognition, object detection and […] ...

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