形状 '[-1, 2, 4, 28]' 对于大小为 768 的输入无效

shape '[-1, 2, 4, 28]' is invalid for input of size 768

我正在尝试在 TPSSpatialTransformerNetwork 上训练 IAM 数据集,但最终出现错误: 形状 '[-1, 2, 4, 28]' 对于大小为 768

的输入无效

数据集中每张图片的大小为(32,128)。我无法弄清楚它在错误步骤中得到的形状。这是代码:

class TPS_SpatialTransformerNetwork(nn.Module):
    def __init__(self):
        super(TPS_SpatialTransformerNetwork, self).__init__()
        self.conv1 = nn.Conv2d(1, 79, kernel_size=5)
        self.conv2 = nn.Conv2d(79, 256, kernel_size=5)
        self.conv2_drop = nn.Dropout2d()
        self.fc1 = nn.Linear(256, 512)
        self.fc2 = nn.Linear(512, 79)

        # Spatial transformer localization-network
        self.localization = nn.Sequential(
            nn.Conv2d(1, 8, kernel_size=7),
            nn.MaxPool2d(2, stride=2),
            nn.ReLU(True),
            nn.Conv2d(8, 79, kernel_size=5),
            nn.MaxPool2d(2, stride=2),
            nn.ReLU(True)
        )

        # Regressor for the 3 * 2 affine matrix
        self.fc_loc = nn.Sequential(
            nn.Linear(79 * 4 * 28, 32),
            nn.ReLU(True),
            nn.Linear(32, 3 * 2)
        )

        # Initialize the weights/bias with identity transformation
        self.fc_loc[2].weight.data.zero_()
        self.fc_loc[2].bias.data.copy_(torch.tensor([1, 0, 0, 0, 1, 0], dtype=torch.float))

    # Spatial transformer network forward function
    def stn(self, x):
        xs = self.localization(x)
        xs = xs.view(-1, 79 * 4 * 28)
        theta = self.fc_loc(xs)
        theta = theta.view(-1, 2, 4,28)


        grid = F.affine_grid(theta, x.size())
        x = F.grid_sample(x, grid)

        return x

    def forward(self, x):
        # transform the input
        x = self.stn(x)

        # Perform the usual forward pass
        x = F.relu(F.max_pool2d(self.conv1(x), 2))
        x = F.relu(F.max_pool2d(self.conv2_drop(self.conv2(x)), 2))
        x = x.view(-1, 320)
        x = F.relu(self.fc1(x))
        x = F.dropout(x, training=self.training)
        x = self.fc2(x)
        return F.log_softmax(x, dim=1)

4 frames
/content/drive/My Drive/OCR/transformation.py in stn(self, x)
     41         xs = xs.view(-1, 79 * 4 * 28)
     42         theta = self.fc_loc(xs)
---> 43         theta = theta.view(-1, 2, 4,28)
     44 
     45 

RuntimeError: shape '[-1, 2, 4, 28]' is invalid for input of size 768

我在发表评论后进行了快速搜索,发现了这个 link,其中详细介绍了如何在 pytorch 中执行 STN(在 pytorch 官方网站上)。我不知道您是如何获得调整大小命令的,但我在上面最初的评论中提出的建议似乎是正确的,您正在尝试调整(查看)大小为 [2,4,28] 的矩阵中的 6 个特征,这将从不工作。正如你在下面看到的,它在 pytorch 站点上的完成方式是:

def stn(self, x):
    xs = self.localization(x)
    xs = xs.view(-1, 10 * 3 * 3)
    theta = self.fc_loc(xs)
    theta = theta.view(-1, 2, 3) #<-----------KEY LINE HERE

    grid = F.affine_grid(theta, x.size())
    x = F.grid_sample(x, grid)
    return x

使用对应于深度 6 的维度重塑 theta 张量。

theta 张量大小为 6 的原因是因为它由 self.fc_loc 方法提供,它本身给出如下:

    self.fc_loc = nn.Sequential(
        nn.Linear(79 * 4 * 28, 32),
        nn.ReLU(True),
        nn.Linear(32, 3 * 2)
    )

如果我们看最后一行,我们可以看到这个顺序块的输出(每行在图中按顺序构建,即顺序!)是一个具有 32 个输入和 6 个输出的线性块(3*2)。因此,您的 theta 的形状为 [-1, 6],其中 -1 是这段代码中批量大小的占位符。