convolutional neural networks
Neural Architecture Search
Neural network architecture design is one of the key hyperparameters in solving problems using deep learning and computer vision. Various neural networks are compared on two key factors i.e. accuracy and computational requirement. In general, as we aim to design more accurate neural networks, the computational requirement increases. In this post, we shall learn about […]
Continue ReadingZero to Hero: Guide to Object Detection using Deep Learning: Faster R-CNN,YOLO,SSD
In this post, I shall explain object detection and various algorithms like Faster R-CNN, YOLO, SSD. We shall start from beginners’ level and go till the state-of-the-art in object detection, understanding the intuition, approach and salient features of each method. What is Image Classification?: Image classification takes an image and predicts the object in an […]
Continue ReadingResNet, AlexNet, VGGNet, Inception: Understanding various architectures of Convolutional Networks
Convolutional neural networks are fantastic for visual recognition tasks. Good ConvNets are beasts with millions of parameters and many hidden layers. In fact, a bad rule of thumb is: ‘higher the number of hidden layers, better the network’. AlexNet, VGG, Inception, ResNet are some of the popular networks. Why do these networks work so well? How are […]
Continue ReadingQuick complete Tensorflow tutorial to understand and run Alexnet, VGG, Inceptionv3, Resnet and squeezeNet networks
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 ReadingTensorflow Tutorial 2: image classifier using convolutional neural network
In this Tensorflow tutorial, we shall build a convolutional neural network based image classifier using Tensorflow. If you are just getting started with Tensorflow, then it would be a good idea to read the basic Tensorflow tutorial here. To demonstrate how to build a convolutional neural network based image classifier, we shall build a 6 […]
Continue Reading