In this post, we will learn how to convert a PyTorch model to TensorFlow. If you are new to Deep Learning you may be overwhelmed by which framework to use. We personally think PyTorch is the first ...
CNN Receptive Field Computation Using Backprop with TensorFlow
In our recent post about receptive field computation, we examined the concept of receptive fields using PyTorch. We learned receptive field is the proper tool to understand what the network 'sees' ...
CNN Fully Convolutional Image Classification (FCN CNN) with TensorFlow –
In a previous post, we covered the concept of fully convolutional neural networks (FCN) in PyTorch, where we showed how we could solve the classification task using the input image of arbitrary ...
EfficientNet: Theory + Code
In this post, we will discuss the paper "EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks" At the heart of many computer vision tasks like image classification, object ...
Implementing an MLP in TensorFlow & Keras
In this post, we will introduce several new concepts associated with the general problem of classification involving more than two classes. This is sometimes referred to as multinomial regression or ...
Deep learning using Keras – The Basics
1. Deep Learning Frameworks Deep Learning is a branch of AI which uses Neural Networks for Machine Learning. In the recent years, it has shown dramatic improvements over traditional machine ...