Py Part 8 V1

So, in this video, I’ll be showing you how to use transfer learning to train a network that can properly classify those images of cats and dogs. What we’ll do here is use a pre-trained network to actually detect and extract features from the images. This is really good for solving many challenging problems in … Read more

PyTorch – Part 7

In this video, I’ll be showing you how to load image data. This is really useful for what you’ll be doing in real projects. So previously, we used MNIST. Fashion-MNIST were just toy datasets for testing your networks, but you’ll be using full-size images like you’d get from smartphone cameras and your actual projects that … Read more

Py Part 6 V1

In this video and notebook, I’ll be showing you how to save and load models. Like I said previously, you typically don’t want to have to train a new model every time you want to use it. So instead, you’ll train it once and then save it, and then if you need to use it … Read more

Py Part 5 V2

Hello, welcome back. So in this video and notebook, I’m going to be talking about inference and validation. So, inference means when we have a tree network and we’re using our network to make predictions. So neural networks have this issue where they have a tendency to perform too well on the training data, and … Read more

PyTorch – Part 4

Welcome back. So, in this notebook, you’ll be building your own neural network to classify clothing images. So, like I talked about in the last video, MNIST is actually a fairly trivial dataset these days. It’s really easy to get really high accuracy with a neural network. So instead, you’re going to be using Fashion-MNIST, … Read more

Py Part 3 V2

Hello, in this notebook, I’ll be showing you how to train a neural network with PyTorch. So, remember from the previous part we built a neural network but it wasn’t able to actually tell us what the digit was in these images. So, what we want is we want to be able to pass in … Read more

Py Part 2 V1

Hello everyone and welcome back.So,in this video, I’m going to be showing you how you actually build neural networks with PyTorch. At the end of this notebook which I’ll provide for you you’ll build your own neural network. So, let’s get started. So, the first step we import things like Normal, to import PyTorch we … Read more

Part 1 V2

Hello everyone and welcome to this lesson on deep learning with PyTorch. So, here I’ve built a bunch of Jupyter Notebooks that will lead you through actually writing the code to implement deep learning networks and Python. So, here we’re using the PyTorch framework which is somewhat newer than TensorFlow and Keras. It’s being developed … Read more