The field of computer vision has existed since the late 1960s. Image classification and object detection are some of the oldest problems in the field of computer vision that researchers have tried to ...
PyTorch to Tensorflow Model Conversion
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 with TensorFlow
In a previous post, we had covered the concept of fully convolutional neural networks (FCN) in PyTorch, where we showed how we can solve the classification task using the input image of arbitrary ...
Universal Sentence Encoder
There are three important parts of Artificial Intelligence Natural Language ProcessingSpeechComputer Vision This post falls in the first category. In this post, we will learn a tool called ...
Keras Tutorial : Fine-tuning using pre-trained models
In the previous two posts, we learned how to use pre-trained models and how to extract features from them for training a model for a different task. In this tutorial, we will learn how to fine-tune a ...