From the course: Deep Learning: Image Recognition
Unlock the full course today
Join today to access over 24,400 courses taught by industry experts.
Developing image recognition systems - Python Tutorial
From the course: Deep Learning: Image Recognition
Developing image recognition systems
- Now let's go ahead and talk about the most important aspect, which is the image-recognition systems. Well, in this session, we will delve deeper into building a robust image recognition system using a convolutional neural network. We'll continue from our previous discussions and introduce a more systematic CNN model to tackle the CIFAR-10 dataset. Let's dive right in and list the components of our system. Number one, we load and pre-process data. Number two, we visualize sample images. Number three, we define the CNN model. Number four, we compile and train the model. Number five, save the model. Number six, visualize training and validation accuracy. And number seven, finally, we evaluate the model. Let's go ahead and talk about the system in a little bit more detail. First, as always, we start by loading and pre-processing our CIFAR-10 dataset. This involves normalizing the pixel values and converting class labels into one-hot encoded vectors. Next, we visualize the sample images.…
Contents
-
-
-
-
-
(Locked)
Image recognition fundamentals7m 55s
-
(Locked)
Preprocessing and feeding data into your network7m 33s
-
(Locked)
Developing image recognition systems9m 20s
-
(Locked)
Success metrics16m 17s
-
(Locked)
Challenges in image recognition12m 57s
-
(Locked)
Challenge: Dealing with noise in images2m 42s
-
(Locked)
Solution: Dealing with noise in images3m 32s
-
(Locked)
Generative AI and image recognition4m 23s
-
(Locked)
-