Tag: #convolutionalneuralnetworks

#009 TF An implementation of a Convolutional Neural Network in tf.keras – MNIST dataset

In this post we will see how we can classify handwritten digits using Convolutional Neural Network implemented in TensorFlow 2.0. Required packages: Numpy Matplotlib Tensorflow Sklearn Seaborn Table of Contents: Load the digit dataset Implementing a Neural Network Visualization and Testing 1. Load the digit dataset Let start with importing all necessary libraries. After imports, we can use imported module to load mnist data. The load_data() function will automatically download and split our data into…
Read more

#OD1 YOLO Object Detection

YOU ONLY LOOK ONCE Highlights: In this post we will learn about the YOLO Object Detection system, and how to implement such a system with Keras. About Yolo: Our unified architecture is extremely fast. Our base YOLO model processes imagesin real-time at 45 frames per second. A smaller version of the network, Fast YOLO,processes an astounding 155 frames per second … — You Only Look Once: Unified, Real-Time Object Detection, 2015 Tutorial Overview: This post…
Read more

FR 001 Face Recognition with Celebrities

Highlights: In the world today, there are a lot of visual data and it is important how we utilize and interpret this data. The project is more of an evolution between traditional algorithms and deep learning techniques. How accurately can we predict and find the correct name of the celebrity in a given image or video frame. Tutorial Overview: This post covers the following topics: What is a facial recognition system? Applications of face recognition.…
Read more

#008 TF An implementation of a Convolutional Neural Network in tf.keras – MNIST dataset

In this post we will see how we can classify handwritten digits using convolutional neural network implemented in Keras. Required packages: Numpy Matplotlib Keras Tensorflow Sklearn Seaborn __future__ Keras-vis Table of Contents: Load the digit dataset Implementing a Neural Network Visualization Test our model Save a model as picture Activation Maps Saliency maps Activations Now we can plot some predictions, to see how our model works. Images for testing can be downloaded from the internet…
Read more

017 CNN Inception Network

#017 CNN Inception Network

\(Inception\enspace network \)  Motivation for the \(Inception\enspace network \): In the last post we talked about why \(1\times 1 \) convolutional layer can be useful and now we will use it for building the \(Inception\enspace network \). When designing a layer for a \(convnet \) we might have to choose between a \(1 \times 3 \) filter, a \(3 \times 3\) or \(5\times 5\) or maybe a pooling layer. An \(Inception\enspace network \) solves this…
Read more