Shortcuts

Introduction || Tensors || Autograd || Building Models || TensorBoard Support || Training Models || Model Understanding

Building Models with PyTorch

Follow along with the video below or on youtube.

torch.nn.Module and torch.nn.Parameter

In this video, we’ll be discussing some of the tools PyTorch makes available for building deep learning networks.

Except for Parameter, the classes we discuss in this video are all subclasses of torch.nn.Module. This is the PyTorch base class meant to encapsulate behaviors specific to PyTorch Models and their components.

One important behavior of torch.nn.Module is registering parameters. If a particular Module subclass has learning weights, these weights are expressed as instances of torch.nn.Parameter. The Parameter class is a subclass of torch.Tensor, with the special behavior that when they are assigned as attributes of a Module, they are added to the list of that modules parameters. These parameters may be accessed through the parameters() method on the Module class.

As a simple example, here’s a very simple model with two linear layers and an activation function. We’ll create an instance of it and ask it to report on its parameters:

import torch

class TinyModel(torch.nn.Module):

    def __init__(self):
        super(TinyModel, self).__init__()

        self.linear1 = torch.nn.Linear(100, 200)
        self.activation = torch.nn.ReLU()
        self.linear2 = torch.nn.Linear(200, 10)
        self.softmax = torch.nn.Softmax()

    def forward(self, x):
        x = self.linear1(x)
        x = self.activation(x)
        x = self.linear2(x)
        x = self.softmax(x)
        return x

tinymodel = TinyModel()

print('The model:')
print(tinymodel)

print('\n\nJust one layer:')
print(tinymodel.linear2)

print('\n\nModel params:')
for param in tinymodel.parameters():
    print(param)

print('\n\nLayer params:')
for param in tinymodel.linear2.parameters():
    print(param)
The model:
TinyModel(
  (linear1): Linear(in_features=100, out_features=200, bias=True)
  (activation): ReLU()
  (linear2): Linear(in_features=200, out_features=10, bias=True)
  (softmax): Softmax(dim=None)
)


Just one layer:
Linear(in_features=200, out_features=10, bias=True)


Model params:
Parameter containing:
tensor([[ 0.0792,  0.0999, -0.0114,  ...,  0.0356,  0.0941,  0.0888],
        [-0.0863,  0.0450,  0.0513,  ..., -0.0587,  0.0431, -0.0691],
        [ 0.0952, -0.0616, -0.0414,  ...,  0.0028, -0.0133, -0.0030],
        ...,
        [ 0.0399, -0.0183, -0.0771,  ...,  0.0984, -0.0652,  0.0022],
        [ 0.0925,  0.0157, -0.0704,  ..., -0.0908, -0.0127,  0.0982],
        [ 0.0375,  0.0006,  0.0064,  ...,  0.0627, -0.0852,  0.0805]],
       requires_grad=True)
Parameter containing:
tensor([ 0.0525,  0.0620,  0.0267, -0.0563,  0.0816, -0.0087,  0.0232,  0.0946,
         0.0654, -0.0349,  0.0474, -0.0096, -0.0333,  0.0318, -0.0125, -0.0657,
         0.0557,  0.0713, -0.0904, -0.0247,  0.0571, -0.0866,  0.0968,  0.0695,
        -0.0280,  0.0723,  0.0137,  0.0556,  0.0400, -0.0953,  0.0100,  0.0016,
        -0.0989,  0.0140,  0.0410,  0.0380,  0.0454, -0.0355, -0.0232,  0.0601,
        -0.0645,  0.0295,  0.0613,  0.0847,  0.0035, -0.0942, -0.0884, -0.0334,
         0.0170, -0.0820,  0.0353, -0.0794, -0.0300, -0.0505,  0.0151,  0.0891,
        -0.0366, -0.0720,  0.0305,  0.0474, -0.0697, -0.0476,  0.0713, -0.0250,
         0.0122,  0.0461, -0.0442,  0.0578,  0.0056,  0.0346, -0.0228, -0.0070,
         0.0265,  0.0146,  0.0725,  0.0668,  0.0194, -0.0696,  0.0984,  0.0033,
        -0.0523,  0.0770, -0.0600, -0.0120, -0.0359,  0.0970, -0.0337,  0.0731,
         0.0911, -0.0006,  0.0406,  0.0303, -0.0518,  0.0686, -0.0501, -0.0704,
         0.0814, -0.0764,  0.0918,  0.0452, -0.0610, -0.0900, -0.0608, -0.0468,
        -0.0156, -0.0880, -0.0128,  0.0329,  0.0864, -0.0712,  0.0975, -0.0580,
        -0.0129, -0.0504,  0.0784,  0.0462,  0.0310, -0.0464,  0.0982,  0.0156,
        -0.0983, -0.0848,  0.0232, -0.0320, -0.0789, -0.0201, -0.0415, -0.0132,
         0.0775, -0.0306,  0.0840,  0.0444,  0.0797, -0.0116,  0.0622, -0.0413,
         0.0735, -0.0806,  0.0469,  0.0609, -0.0331, -0.0375, -0.0571, -0.0248,
        -0.0432,  0.0131,  0.0580, -0.0335, -0.0341, -0.0454, -0.0782,  0.0591,
        -0.0840,  0.0158,  0.0210,  0.0447,  0.0415, -0.0525, -0.0525,  0.0382,
         0.0018, -0.0950, -0.0209, -0.0451, -0.0731,  0.0943,  0.0515,  0.0809,
        -0.0873, -0.0218, -0.0030, -0.0699, -0.0794, -0.0464,  0.0397,  0.0811,
         0.0604, -0.0029, -0.0946,  0.0266, -0.0754, -0.0545, -0.0776, -0.0034,
        -0.0345, -0.0925, -0.0325,  0.0104, -0.0531,  0.0003,  0.0966, -0.0831,
         0.0369,  0.0466,  0.0596, -0.0280, -0.0584,  0.0600, -0.0933,  0.0855],
       requires_grad=True)
Parameter containing:
tensor([[ 0.0454,  0.0038,  0.0547,  ...,  0.0361,  0.0386,  0.0356],
        [ 0.0479, -0.0422,  0.0654,  ..., -0.0176, -0.0412,  0.0288],
        [ 0.0190, -0.0560, -0.0703,  ..., -0.0537, -0.0552, -0.0389],
        ...,
        [-0.0268,  0.0231, -0.0243,  ..., -0.0035,  0.0303, -0.0102],
        [ 0.0207,  0.0152, -0.0375,  ...,  0.0549, -0.0693, -0.0689],
        [-0.0148, -0.0496,  0.0250,  ...,  0.0354, -0.0679,  0.0582]],
       requires_grad=True)
Parameter containing:
tensor([ 0.0364,  0.0559, -0.0374,  0.0205, -0.0149,  0.0225, -0.0392,  0.0347,
         0.0197,  0.0382], requires_grad=True)


Layer params:
Parameter containing:
tensor([[ 0.0454,  0.0038,  0.0547,  ...,  0.0361,  0.0386,  0.0356],
        [ 0.0479, -0.0422,  0.0654,  ..., -0.0176, -0.0412,  0.0288],
        [ 0.0190, -0.0560, -0.0703,  ..., -0.0537, -0.0552, -0.0389],
        ...,
        [-0.0268,  0.0231, -0.0243,  ..., -0.0035,  0.0303, -0.0102],
        [ 0.0207,  0.0152, -0.0375,  ...,  0.0549, -0.0693, -0.0689],
        [-0.0148, -0.0496,  0.0250,  ...,  0.0354, -0.0679,  0.0582]],
       requires_grad=True)
Parameter containing:
tensor([ 0.0364,  0.0559, -0.0374,  0.0205, -0.0149,  0.0225, -0.0392,  0.0347,
         0.0197,  0.0382], requires_grad=True)

This shows the fundamental structure of a PyTorch model: there is an __init__() method that defines the layers and other components of a model, and a forward() method where the computation gets done. Note that we can print the model, or any of its submodules, to learn about its structure.

Common Layer Types

Linear Layers

The most basic type of neural network layer is a linear or fully connected layer. This is a layer where every input influences every output of the layer to a degree specified by the layer’s weights. If a model has m inputs and n outputs, the weights will be an m x n matrix. For example:

lin = torch.nn.Linear(3, 2)
x = torch.rand(1, 3)
print('Input:')
print(x)

print('\n\nWeight and Bias parameters:')
for param in lin.parameters():
    print(param)

y = lin(x)
print('\n\nOutput:')
print(y)
Input:
tensor([[0.6331, 0.1163, 0.2535]])


Weight and Bias parameters:
Parameter containing:
tensor([[-0.3508, -0.5556,  0.4382],
        [-0.3059,  0.3980,  0.3176]], requires_grad=True)
Parameter containing:
tensor([-0.5099,  0.4478], requires_grad=True)


Output:
tensor([[-0.6856,  0.3809]], grad_fn=<AddmmBackward0>)

If you do the matrix multiplication of x by the linear layer’s weights, and add the biases, you’ll find that you get the output vector y.

One other important feature to note: When we checked the weights of our layer with lin.weight, it reported itself as a Parameter (which is a subclass of Tensor), and let us know that it’s tracking gradients with autograd. This is a default behavior for Parameter that differs from Tensor.

Linear layers are used widely in deep learning models. One of the most common places you’ll see them is in classifier models, which will usually have one or more linear layers at the end, where the last layer will have n outputs, where n is the number of classes the classifier addresses.

Convolutional Layers

Convolutional layers are built to handle data with a high degree of spatial correlation. They are very commonly used in computer vision, where they detect close groupings of features which the compose into higher-level features. They pop up in other contexts too - for example, in NLP applications, where a word’s immediate context (that is, the other words nearby in the sequence) can affect the meaning of a sentence.

We saw convolutional layers in action in LeNet5 in an earlier video:

import torch.functional as F


class LeNet(torch.nn.Module):

    def __init__(self):
        super(LeNet, self).__init__()
        # 1 input image channel (black & white), 6 output channels, 5x5 square convolution
        # kernel
        self.conv1 = torch.nn.Conv2d(1, 6, 5)
        self.conv2 = torch.nn.Conv2d(6, 16, 3)
        # an affine operation: y = Wx + b
        self.fc1 = torch.nn.Linear(16 * 6 * 6, 120)  # 6*6 from image dimension
        self.fc2 = torch.nn.Linear(120, 84)
        self.fc3 = torch.nn.Linear(84, 10)

    def forward(self, x):
        # Max pooling over a (2, 2) window
        x = F.max_pool2d(F.relu(self.conv1(x)), (2, 2))
        # If the size is a square you can only specify a single number
        x = F.max_pool2d(F.relu(self.conv2(x)), 2)
        x = x.view(-1, self.num_flat_features(x))
        x = F.relu(self.fc1(x))
        x = F.relu(self.fc2(x))
        x = self.fc3(x)
        return x

    def num_flat_features(self, x):
        size = x.size()[1:]  # all dimensions except the batch dimension
        num_features = 1
        for s in size:
            num_features *= s
        return num_features

Let’s break down what’s happening in the convolutional layers of this model. Starting with conv1:

  • LeNet5 is meant to take in a 1x32x32 black & white image. The first argument to a convolutional layer’s constructor is the number of input channels. Here, it is 1. If we were building this model to look at 3-color channels, it would be 3.

  • A convolutional layer is like a window that scans over the image, looking for a pattern it recognizes. These patterns are called features, and one of the parameters of a convolutional layer is the number of features we would like it to learn. This is the second argument to the constructor is the number of output features. Here, we’re asking our layer to learn 6 features.

  • Just above, I likened the convolutional layer to a window - but how big is the window? The third argument is the window or kernel size. Here, the “5” means we’ve chosen a 5x5 kernel. (If you want a kernel with height different from width, you can specify a tuple for this argument - e.g., (3, 5) to get a 3x5 convolution kernel.)

The output of a convolutional layer is an activation map - a spatial representation of the presence of features in the input tensor. conv1 will give us an output tensor of 6x28x28; 6 is the number of features, and 28 is the height and width of our map. (The 28 comes from the fact that when scanning a 5-pixel window over a 32-pixel row, there are only 28 valid positions.)

We then pass the output of the convolution through a ReLU activation function (more on activation functions later), then through a max pooling layer. The max pooling layer takes features near each other in the activation map and groups them together. It does this by reducing the tensor, merging every 2x2 group of cells in the output into a single cell, and assigning that cell the maximum value of the 4 cells that went into it. This gives us a lower-resolution version of the activation map, with dimensions 6x14x14.

Our next convolutional layer, conv2, expects 6 input channels (corresponding to the 6 features sought by the first layer), has 16 output channels, and a 3x3 kernel. It puts out a 16x12x12 activation map, which is again reduced by a max pooling layer to 16x6x6. Prior to passing this output to the linear layers, it is reshaped to a 16 * 6 * 6 = 576-element vector for consumption by the next layer.

There are convolutional layers for addressing 1D, 2D, and 3D tensors. There are also many more optional arguments for a conv layer constructor, including stride length(e.g., only scanning every second or every third position) in the input, padding (so you can scan out to the edges of the input), and more. See the documentation for more information.

Recurrent Layers

Recurrent neural networks (or RNNs) are used for sequential data - anything from time-series measurements from a scientific instrument to natural language sentences to DNA nucleotides. An RNN does this by maintaining a hidden state that acts as a sort of memory for what it has seen in the sequence so far.

The internal structure of an RNN layer - or its variants, the LSTM (long short-term memory) and GRU (gated recurrent unit) - is moderately complex and beyond the scope of this video, but we’ll show you what one looks like in action with an LSTM-based part-of-speech tagger (a type of classifier that tells you if a word is a noun, verb, etc.):

class LSTMTagger(torch.nn.Module):

    def __init__(self, embedding_dim, hidden_dim, vocab_size, tagset_size):
        super(LSTMTagger, self).__init__()
        self.hidden_dim = hidden_dim

        self.word_embeddings = torch.nn.Embedding(vocab_size, embedding_dim)

        # The LSTM takes word embeddings as inputs, and outputs hidden states
        # with dimensionality hidden_dim.
        self.lstm = torch.nn.LSTM(embedding_dim, hidden_dim)

        # The linear layer that maps from hidden state space to tag space
        self.hidden2tag = torch.nn.Linear(hidden_dim, tagset_size)

    def forward(self, sentence):
        embeds = self.word_embeddings(sentence)
        lstm_out, _ = self.lstm(embeds.view(len(sentence), 1, -1))
        tag_space = self.hidden2tag(lstm_out.view(len(sentence), -1))
        tag_scores = F.log_softmax(tag_space, dim=1)
        return tag_scores

The constructor has four arguments:

  • vocab_size is the number of words in the input vocabulary. Each word is a one-hot vector (or unit vector) in a vocab_size-dimensional space.

  • tagset_size is the number of tags in the output set.

  • embedding_dim is the size of the embedding space for the vocabulary. An embedding maps a vocabulary onto a low-dimensional space, where words with similar meanings are close together in the space.

  • hidden_dim is the size of the LSTM’s memory.

The input will be a sentence with the words represented as indices of one-hot vectors. The embedding layer will then map these down to an embedding_dim-dimensional space. The LSTM takes this sequence of embeddings and iterates over it, fielding an output vector of length hidden_dim. The final linear layer acts as a classifier; applying log_softmax() to the output of the final layer converts the output into a normalized set of estimated probabilities that a given word maps to a given tag.

If you’d like to see this network in action, check out the Sequence Models and LSTM Networks tutorial on pytorch.org.

Transformers

Transformers are multi-purpose networks that have taken over the state of the art in NLP with models like BERT. A discussion of transformer architecture is beyond the scope of this video, but PyTorch has a Transformer class that allows you to define the overall parameters of a transformer model - the number of attention heads, the number of encoder & decoder layers, dropout and activation functions, etc. (You can even build the BERT model from this single class, with the right parameters!) The torch.nn.Transformer class also has classes to encapsulate the individual components (TransformerEncoder, TransformerDecoder) and subcomponents (TransformerEncoderLayer, TransformerDecoderLayer). For details, check out the documentation on transformer classes, and the relevant tutorial on pytorch.org.

Other Layers and Functions

Data Manipulation Layers

There are other layer types that perform important functions in models, but don’t participate in the learning process themselves.

Max pooling (and its twin, min pooling) reduce a tensor by combining cells, and assigning the maximum value of the input cells to the output cell (we saw this). For example:

my_tensor = torch.rand(1, 6, 6)
print(my_tensor)

maxpool_layer = torch.nn.MaxPool2d(3)
print(maxpool_layer(my_tensor))
tensor([[[0.1946, 0.4040, 0.2656, 0.5504, 0.9864, 0.7842],
         [0.6388, 0.2671, 0.3512, 0.8099, 0.4837, 0.5473],
         [0.5790, 0.5713, 0.7528, 0.0582, 0.4930, 0.1426],
         [0.4823, 0.0044, 0.0474, 0.6133, 0.7136, 0.9497],
         [0.6022, 0.5227, 0.8922, 0.0538, 0.6912, 0.5902],
         [0.6401, 0.4722, 0.3547, 0.9407, 0.3091, 0.6685]]])
tensor([[[0.7528, 0.9864],
         [0.8922, 0.9497]]])

If you look closely at the values above, you’ll see that each of the values in the maxpooled output is the maximum value of each quadrant of the 6x6 input.

Normalization layers re-center and normalize the output of one layer before feeding it to another. Centering the and scaling the intermediate tensors has a number of beneficial effects, such as letting you use higher learning rates without exploding/vanishing gradients.

my_tensor = torch.rand(1, 4, 4) * 20 + 5
print(my_tensor)

print(my_tensor.mean())

norm_layer = torch.nn.BatchNorm1d(4)
normed_tensor = norm_layer(my_tensor)
print(normed_tensor)

print(normed_tensor.mean())
tensor([[[ 8.0570,  7.2575, 18.5872,  8.7279],
         [20.9974,  7.4343,  5.8082, 14.8036],
         [22.7765, 12.8321,  6.0588,  7.6858],
         [23.7634, 22.4533, 23.8657, 20.2856]]])
tensor(14.4622)
tensor([[[-0.5644, -0.7379,  1.7210, -0.4188],
         [ 1.4376, -0.7942, -1.0618,  0.4184],
         [ 1.5998,  0.0757, -0.9624, -0.7131],
         [ 0.8116, -0.0961,  0.8824, -1.5979]]],
       grad_fn=<NativeBatchNormBackward0>)
tensor(5.9605e-08, grad_fn=<MeanBackward0>)

Running the cell above, we’ve added a large scaling factor and offset to an input tensor; you should see the input tensor’s mean() somewhere in the neighborhood of 15. After running it through the normalization layer, you can see that the values are smaller, and grouped around zero - in fact, the mean should be very small (> 1e-8).

This is beneficial because many activation functions (discussed below) have their strongest gradients near 0, but sometimes suffer from vanishing or exploding gradients for inputs that drive them far away from zero. Keeping the data centered around the area of steepest gradient will tend to mean faster, better learning and higher feasible learning rates.

Dropout layers are a tool for encouraging sparse representations in your model - that is, pushing it to do inference with less data.

Dropout layers work by randomly setting parts of the input tensor during training - dropout layers are always turned off for inference. This forces the model to learn against this masked or reduced dataset. For example:

my_tensor = torch.rand(1, 4, 4)

dropout = torch.nn.Dropout(p=0.4)
print(dropout(my_tensor))
print(dropout(my_tensor))
tensor([[[0.7861, 0.9105, 0.0000, 0.2343],
         [0.0000, 0.2647, 0.0000, 0.9153],
         [1.1048, 0.0000, 1.5985, 0.3216],
         [0.0000, 1.1567, 1.0921, 0.6450]]])
tensor([[[0.0000, 0.9105, 0.7220, 0.2343],
         [0.0285, 0.2647, 0.4429, 0.0000],
         [0.0000, 0.0000, 1.5985, 0.3216],
         [1.2779, 0.0000, 0.0000, 0.6450]]])

Above, you can see the effect of dropout on a sample tensor. You can use the optional p argument to set the probability of an individual weight dropping out; if you don’t it defaults to 0.5.

Activation Functions

Activation functions make deep learning possible. A neural network is really a program - with many parameters - that simulates a mathematical function. If all we did was multiple tensors by layer weights repeatedly, we could only simulate linear functions; further, there would be no point to having many layers, as the whole network would reduce could be reduced to a single matrix multiplication. Inserting non-linear activation functions between layers is what allows a deep learning model to simulate any function, rather than just linear ones.

torch.nn.Module has objects encapsulating all of the major activation functions including ReLU and its many variants, Tanh, Hardtanh, sigmoid, and more. It also includes other functions, such as Softmax, that are most useful at the output stage of a model.

Loss Functions

Loss functions tell us how far a model’s prediction is from the correct answer. PyTorch contains a variety of loss functions, including common MSE (mean squared error = L2 norm), Cross Entropy Loss and Negative Likelihood Loss (useful for classifiers), and others.

Total running time of the script: ( 0 minutes 0.013 seconds)

Gallery generated by Sphinx-Gallery


더 궁금하시거나 개선할 내용이 있으신가요? 커뮤니티에 참여해보세요!


이 튜토리얼이 어떠셨나요? 평가해주시면 이후 개선에 참고하겠습니다! :)

© Copyright 2018-2023, PyTorch & 파이토치 한국 사용자 모임(PyTorch Korea User Group).

Built with Sphinx using a theme provided by Read the Docs.

PyTorchKorea @ GitHub

파이토치 한국 사용자 모임을 GitHub에서 만나보세요.

GitHub로 이동

한국어 튜토리얼

한국어로 번역 중인 PyTorch 튜토리얼입니다.

튜토리얼로 이동

커뮤니티

다른 사용자들과 의견을 나누고, 도와주세요!

커뮤니티로 이동