Object Detection - YOLO

In this post you will learn to: Use Object Detection on car detection dataset Deal with bounding boxes We need the following packages:

Understanding LSTM Networks

Traditional Neural Networks fails to generalize well for sequence data. Recurrent Neural Networks are a type of neural networks that have loop within them and works well with sequence data....

Implementation of a Full ResNet Model in Keras

Residual Networks Deep residual networks took the deep learning world by storm when Microsoft Research released Deep Residual Learning for Image Recognition. These networks led to 1st-place winning entries...

Full Convolutional Model using TensorFlow

Introduction In this post I implemented a full convolutional model using tensorflow that uses SIGNS dataset which contains hand signs of digits 0 to 5. Initliased weights with xaviers...

Implementing Logistic Regression 3 Ways

Logistic Regression In the previous post we have seen an Regression Algorithm called Linear Regression implemented in 3 ways. In this post I am going to talk about classification...