Image segmentation example image

Image Segmentation using deconvolution layer in Tensorflow

by koustubh • May 30, 2017

 In this series of post, we shall learn the algorithm for image segmentation and implementation of the same using Tensorflow. This is the first part of the series where we shall focus on understanding and be implementing a deconvolutional/fractional-strided-convolutional layer in Tensorflow.   Why is deconvolutional layer so important? Image segmentation is just one of […]

Continue Reading
Keras tensorflow tutorial

Keras tutorial: Practical guide from getting started to developing complex deep neural network

by Ankit Sachan • May 16, 2017

Keras is a high-level python API which can be used to quickly build and train neural networks using either Tensorflow or Theano as back-end. This tutorial assumes that you are slightly familiar convolutional neural networks. You can follow the first part of convolutional neural network tutorial to learn more about them. In this quick tutorial, we shall […]

Continue Reading
Deep Learning on Raspberry Pi

Accelerating Convolutional Neural Networks on Raspberry Pi

by koustubh • April 5, 2017

Unless you have been living under the rock, you must have heard of the revolution that deep learning and convolutional neural networks have brought in computer vision. Computers have achieved near-human level accuracy for most of the tasks. However, most of the top performing neural networks for state of the art image recognition problem suffer […]

Continue Reading
Tensorflow tutorial for deep learning

Quick complete Tensorflow tutorial to understand and run Alexnet, VGG, Inceptionv3, Resnet and squeezeNet networks

by Ankit Sachan • March 31, 2017

 This Tensorflow tutorial for convolutional neural networks has three parts: 1. We shall look at some of the most successful convolutional neural network architectures like Inception, AlexNet, Resnet etc. 2. In the second part, we shall take a quick tutorial of a popular high-level and light-weight Tensorflow library called TensorFlow-Slim(TF-Slim). 3. Finally, using TF-Slim, we […]

Continue Reading
Tensorflow tutorials

A quick complete tutorial to save and restore Tensorflow models

by Ankit Sachan • March 20, 2017

Update: This popular article shows how to save and restore models in Tensorflow 1.x. If you want to learn the same with Tensorflow2.x, please go to this article that explains how to save and restore Tensorflow 2.x models. In this Tensorflow tutorial, I shall explain: How does a Tensorflow model look like? How to save […]

Continue Reading