Complete Implementation of a Mini VGG Network for Image Recognition
VGG Network is the basis for one of the most popular image recognition techniques. It is worth learning because it opens a lot of avenues. You need to understand how…
VGG Network is the basis for one of the most popular image recognition techniques. It is worth learning because it opens a lot of avenues. You need to understand how…
I have several tutorials on Tensorflow where built-in loss functions and layers had always been used. But Tensorflow is a lot more dynamic than that. It allows us to write…
I wrote several tutorials on TensorFlow before which include models with Sequential and Functional API, Convolutional Neural Networks, Reinforcement Neural Networks, etc. In this article, we will work on a…
Tensorflow is arguably the most popular package in deep learning and the neural network domain. I wrote a few different tutorials before on Regular Dense Neural Networks, CNN structure, and…
Recurrent neural networks (RNNs) are one of the states of the art algorithm in deep learning especially good for sequential data. It is used in many high-profile applications including Google’s…
Convolutional Neural Network is a great tool for Image classification. It can perform other artificial intelligence tasks as well. But this article will focus primarily on image recognition. I have…
The Convolutional Neural Network (CNN) is a multi-layered neural network that is known to be able to detect patterns and complex features. It has been useful in face detection, self-driving cars, and a lot more very…