TensorLearn
Back to Course
Deep Learning with PyTorch
Module 3 of 12

3. Computer Vision (CNNs)

1. Convolutions

Sliding a filter over an image to detect edges, then textures, then objects.

python
nn.Conv2d(in_channels=3, out_channels=16, kernel_size=3)

2. Pooling

Shrinking the image to summarize information and reduce computation.

python
nn.MaxPool2d(2)

Mark as Completed

TensorLearn - AI Engineering for Professionals