Classifying Dogs vs Cats using PyTorch C++ API: Part-1

Hi Everyone! So excited to be back with another blog in the series of PyTorch C++ Blogs.

Today, we are going to see a practical example of applying a CNN to a Custom Dataset - Dogs vs Cats. This is going to be a short post of showing results and discussion about hyperparameters and loss functions for the task, as code snippets and explanation has been provided here, here and here.

Read More

Training a Network on Custom Dataset using PyTorch C++ API

Recap of the last blog

Before we move on, it’s important what we covered in the last blog. We’ll be going forward from loading Custom Dataset to now using the dataset to train our VGG-16 Network. Previously, we were able to load our custom dataset using the following template:

Read More