尧图建网站 尧图建网站 YAOTU WEB BUILD 免费咨询
ARTICLE DETAIL

资讯详情

深耕网站建设与建站编程的一线实战洞察。

【Bug已解决】how to flatten input in nn.Sequential in Pytorch 解决方案

【Bug已解决】how to flatten input in nn.Sequential in Pytorch 解决方案 【Bug已解决】how to flatten input in nn.Sequential in Pytorch 解决方案问题描述在 PyTorch 中使用nn.Sequential构建神经网络时经常需要在卷积层和全连接层之间进行维度展平flatten操作。然而PyTorch 长期以来没有提供一个内置的 Flatten 层直到 1.2 版本才引入nn.Flatten导致开发者需要自己实现展平逻辑由此产生了各种错误和不便。典型的问题场景包括在nn.Sequential中无法直接插入展平操作导致维度不匹配错误自定义 flatten 函数无法作为nn.Module在nn.Sequential中使用展平后维度计算错误导致后续全连接层输入维度不匹配处理变长输入时展平维度不确定批量数据展平时错误地展平了 batch 维度在不同 PyTorch 版本中 flatten 的实现方式不一致这些问题的核心在于理解 PyTorch 中 tensor 的维度排列以及nn.Sequential对模块的要求。错误复现场景一维度不匹配错误import torch import torch.nn as nn model nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), nn.ReLU(), nn.MaxPool2d(2), # 这里需要展平但没有展平操作 nn.Linear(16 * 16 * 16, 10) ) x torch.randn(1, 3, 32, 32) output model(x) # RuntimeError: mat1 and mat2 shapes cannot be multiplied (1x16384 and 4096x10)场景二自定义函数无法在 Sequential 中使用model nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), nn.ReLU(), nn.MaxPool2d(2), lambda x: x.view(x.size(0), -1), # 错误Sequential 只接受 nn.Module nn.Linear(16 * 16 * 16, 10) ) # TypeError 或 AttributeError场景三展平了 batch 维度class WrongFlatten(nn.Module): def forward(self, x): return x.view(-1) # 展平了所有维度包括 batch 维度 model nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), WrongFlatten(), nn.Linear(16 * 32 * 32, 10) ) x torch.randn(4, 3, 32, 32) output model(x) # 输出形状: [10] 而不是 [4, 10]场景四展平维度计算错误model nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), # 输出: [B, 16, 32, 32] nn.MaxPool2d(2), # 输出: [B, 16, 16, 16] # 展平后应该是 16 * 16 * 16 4096 # 但错误地写成了 16 * 32 * 32 16384 nn.Linear(16 * 32 * 32, 10) # 维度不匹配 )根因分析1.nn.Sequential的要求nn.Sequential要求其中的每个元素都是nn.Module的实例。它按顺序将前一个模块的输出作为后一个模块的输入。普通的 Python 函数或 lambda 表达式不是nn.Module因此不能直接使用。2. Tensor 维度排列在计算机视觉任务中输入 tensor 的维度通常为[batch_size, channels, height, width]。展平操作需要保留 batch 维度将channels * height * width展平为一个维度。3. 卷积输出尺寸计算卷积层的输出尺寸计算公式output_size floor((input_size 2 * padding - kernel_size) / stride) 1池化层的输出尺寸计算公式output_size floor((input_size - kernel_size) / stride) 1展平后的维度 channels * output_height * output_width必须准确计算。4.viewvsreshapeview要求 tensor 在内存中是连续的否则报错reshape自动处理不连续的情况更安全解决方案方案一使用nn.FlattenPyTorch 1.2推荐import torch import torch.nn as nn model nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), nn.ReLU(), nn.MaxPool2d(2), nn.Flatten(), # 自动展平保留 batch 维度 nn.Linear(16 * 16 * 16, 10) ) x torch.randn(4, 3, 32, 32) output model(x) print(output.shape) # torch.Size([4, 10]) # nn.Flatten 的参数 # start_dim: 开始展平的维度默认 1即跳过 batch 维度 # end_dim: 结束展平的维度默认 -1即到最后一个维度 flatten nn.Flatten(start_dim1, end_dim2) x torch.randn(4, 3, 8, 8) print(flatten(x).shape) # torch.Size([4, 24, 8])方案二自定义 Flatten 模块class Flatten(nn.Module): 自定义展平模块 def __init__(self, start_dim1): super().__init__() self.start_dim start_dim def forward(self, x): return x.flatten(self.start_dim) model nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), nn.ReLU(), nn.MaxPool2d(2), Flatten(), nn.Linear(16 * 16 * 16, 10) )方案三使用nn.LazyLinearPyTorch 1.8# nn.LazyLinear 会自动推断输入维度 model nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), nn.ReLU(), nn.MaxPool2d(2), nn.Flatten(), nn.LazyLinear(10) # 不需要手动计算展平后的维度 ) x torch.randn(4, 3, 32, 32) output model(x) print(output.shape) # torch.Size([4, 10])方案四使用 forward 函数代替 Sequentialclass CustomModel(nn.Module): def __init__(self): super().__init__() self.features nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), nn.ReLU(), nn.MaxPool2d(2), ) self.classifier nn.Linear(16 * 16 * 16, 10) def forward(self, x): x self.features(x) x x.view(x.size(0), -1) # 在 forward 中展平 x self.classifier(x) return x完整修复代码 完整的 PyTorch Sequential 中展平输入的解决方案 涵盖多种展平方法、维度计算、变长输入处理、完整CNN示例 import torch import torch.nn as nn import torch.nn.functional as F from typing import Optional, Tuple import math class Flatten(nn.Module): 自定义展平模块兼容旧版 PyTorch def __init__(self, start_dim: int 1, end_dim: int -1): super().__init__() self.start_dim start_dim self.end_dim end_dim def forward(self, x: torch.Tensor) - torch.Tensor: return x.flatten(self.start_dim, self.end_dim) def extra_repr(self) - str: return fstart_dim{self.start_dim}, end_dim{self.end_dim} class Reshape(nn.Module): 重塑形状模块 def __init__(self, *shape): super().__init__() if shape[0] -1 or shape[0] is None: self.shape shape else: self.shape (-1,) shape def forward(self, x: torch.Tensor) - torch.Tensor: return x.reshape(self.shape) class ConvDimensionCalculator: 卷积层输出维度计算器 staticmethod def conv_output_size(input_size, kernel_size, stride1, padding0): return math.floor((input_size 2 * padding - kernel_size) / stride) 1 staticmethod def pool_output_size(input_size, kernel_size, strideNone): if stride is None: stride kernel_size return math.floor((input_size - kernel_size) / stride) 1 ![配图](https://i-blog.csdnimg.cn/img_convert/058780746165893d64334326bfa674d5.png) staticmethod def calculate_flatten_size(input_shape, layers_config): channels, height, width input_shape for layer_type, params in layers_config: if layer_type conv: kernel params.get(kernel_size, 3) stride params.get(stride, 1) padding params.get(padding, 0) out_channels params.get(out_channels, channels) height ConvDimensionCalculator.conv_output_size(height, kernel, stride, padding) width ConvDimensionCalculator.conv_output_size(width, kernel, stride, padding) channels out_channels elif layer_type pool: kernel params.get(kernel_size, 2) stride params.get(stride, kernel) height ConvDimensionCalculator.pool_output_size(height, kernel, stride) width ConvDimensionCalculator.pool_output_size(width, kernel, stride) return channels * height * width, channels, height, width class SimpleCNN(nn.Module): 使用 nn.Flatten 的简单 CNN def __init__(self, num_classes10, input_channels3, input_size32): super().__init__() self.features nn.Sequential( nn.Conv2d(input_channels, 32, kernel_size3, padding1), nn.BatchNorm2d(32), nn.ReLU(inplaceTrue), nn.MaxPool2d(2), nn.Conv2d(32, 64, kernel_size3, padding1), nn.BatchNorm2d(64), nn.ReLU(inplaceTrue), nn.MaxPool2d(2), nn.Conv2d(64, 128, kernel_size3, padding1), nn.BatchNorm2d(128), nn.ReLU(inplaceTrue), nn.MaxPool2d(2), ) calc ConvDimensionCalculator() flatten_size, _, _, _ calc.calculate_flatten_size( (input_channels, input_size, input_size), [(conv, {kernel_size: 3, padding: 1, out_channels: 32}), (pool, {kernel_size: 2}), (conv, {kernel_size: 3, padding: 1, out_channels: 64}), (pool, {kernel_size: 2}), (conv, {kernel_size: 3, padding: 1, out_channels: 128}), (pool, {kernel_size: 2})] ) self.classifier nn.Sequential( nn.Flatten(), nn.Linear(flatten_size, 256), nn.ReLU(inplaceTrue), nn.Dropout(0.5), nn.Linear(256, num_classes), ) def forward(self, x): x self.features(x) x self.classifier(x) return x class FullySequentialCNN(nn.Module): 完全使用 Sequential 的 CNN def __init__(self, num_classes10, input_channels3, input_size32): super().__init__() calc ConvDimensionCalculator() flatten_size, _, _, _ calc.calculate_flatten_size( (input_channels, input_size, input_size), [(conv, {kernel_size: 3, padding: 1, out_channels: 32}), (pool, {kernel_size: 2}), (conv, {kernel_size: 3, padding: 1, out_channels: 64}), (pool, {kernel_size: 2})] ) self.model nn.Sequential( nn.Conv2d(input_channels, 32, kernel_size3, padding1), nn.ReLU(inplaceTrue), nn.MaxPool2d(2), nn.Conv2d(32, 64, kernel_size3, padding1), nn.ReLU(inplaceTrue), nn.MaxPool2d(2), nn.Flatten(), nn.Linear(flatten_size, 128), nn.ReLU(inplaceTrue), nn.Dropout(0.5), nn.Linear(128, num_classes), ) def forward(self, x): return self.model(x) class LazyCNN(nn.Module): 使用 LazyLinear 自动推断维度的 CNN def __init__(self, num_classes10, input_channels3): super().__init__() self.model nn.Sequential( nn.Conv2d(input_channels, 32, kernel_size3, padding1), nn.ReLU(inplaceTrue), nn.MaxPool2d(2), nn.Conv2d(32, 64, kernel_size3, padding1), nn.ReLU(inplaceTrue), nn.MaxPool2d(2), nn.Flatten(), nn.LazyLinear(128), nn.ReLU(inplaceTrue), nn.Dropout(0.5), nn.LazyLinear(num_classes), ) def forward(self, x): return self.model(x) class VariableInputCNN(nn.Module): 支持变长输入的 CNN使用全局池化 def __init__(self, num_classes10, input_channels3): super().__init__() self.features nn.Sequential( nn.Conv2d(input_channels, 32, kernel_size3, padding1), nn.ReLU(inplaceTrue), nn.Conv2d(32, 64, kernel_size3, padding1), nn.ReLU(inplaceTrue), nn.AdaptiveAvgPool2d((1, 1)), ) self.classifier nn.Sequential( nn.Flatten(), nn.Linear(64, num_classes), ) def forward(self, x): x self.features(x) x self.classifier(x) return x def demo_basic_flatten(): print( * 60) print(示例 1: 基本展平操作) print( * 60) flatten nn.Flatten() x torch.randn(4, 3, 8, 8) print(f输入形状: {x.shape}) print(f展平后形状: {flatten(x).shape}) custom_flatten Flatten() print(f自定义展平后形状: {custom_flatten(x).shape}) flatten_partial nn.Flatten(start_dim2) print(f展平 dim 2 后形状: {flatten_partial(x).shape}) print() def demo_sequential_cnn(): print( * 60) print(示例 2: Sequential 中的展平) print( * 60) model FullySequentialCNN(num_classes10, input_channels3, input_size32) x torch.randn(4, 3, 32, 32) output model(x) print(f输入形状: {x.shape}) print(f输出形状: {output.shape}) print() def demo_lazy_linear(): print( * 60) print(示例 3: LazyLinear 自动推断维度) print( * 60) model LazyCNN(num_classes10, input_channels3) x torch.randn(4, 3, 32, 32) output model(x) print(f输入形状: {x.shape}) print(f输出形状: {output.shape}) print() def demo_dimension_calculation(): print( * 60) print(示例 4: 卷积输出维度计算) print( * 60) calc ConvDimensionCalculator() configs [ (32x32 输入, 2层卷积池化, 32, [ (conv, {kernel_size: 3, padding: 1, out_channels: 32}), (pool, {kernel_size: 2}), (conv, {kernel_size: 3, padding: 1, out_channels: 64}), (pool, {kernel_size: 2}), ]), (64x64 输入, 3层卷积池化, 64, [ (conv, {kernel_size: 3, padding: 1, out_channels: 32}), (pool, {kernel_size: 2}), (conv, {kernel_size: 3, padding: 1, out_channels: 64}), (pool, {kernel_size: 2}), (conv, {kernel_size: 3, padding: 1, out_channels: 128}), (pool, {kernel_size: 2}), ]), ] for name, input_size, layers in configs: flatten_size, channels, h, w calc.calculate_flatten_size((3, input_size, input_size), layers) print(f\n{name}:) print(f 最终特征图: {channels} x {h} x {w}) print(f 展平后维度: {flatten_size}) print() def demo_variable_input(): print( * 60) print(示例 5: 变长输入处理) print( * 60) model VariableInputCNN(num_classes10, input_channels3) for size in [32, 64, 128, 224]: x torch.randn(2, 3, size, size) output model(x) print(f输入 {size}x{size} - 输出 {output.shape}) print() def demo_reshape(): print( * 60) print(示例 6: Reshape 模块) print( * 60) model nn.Sequential( nn.Conv2d(3, 16, kernel_size3, padding1), nn.MaxPool2d(2), nn.Flatten(), nn.Linear(16 * 16 * 16, 64), nn.ReLU(), Reshape(16, 4, 4), nn.Conv2d(16, 32, kernel_size3, padding1), nn.Flatten(), nn.Linear(32 * 4 * 4, 10), ) x torch.randn(4, 3, 32, 32) output model(x) print(f输入形状: {x.shape}) print(f输出形状: {output.shape}) print() def demo_full_training(): print( * 60) print(示例 7: 完整训练流程) print( * 60) from torch.utils.data import DataLoader, TensorDataset import torch.optim as optim torch.manual_seed(42) X torch.randn(200, 3, 32, 32) y torch.randint(0, 10, (200,)) dataset TensorDataset(X, y) dataloader DataLoader(dataset, batch_size16, shuffleTrue) model SimpleCNN(num_classes10, input_channels3, input_size32) optimizer optim.Adam(model.parameters(), lr0.001) criterion nn.CrossEntropyLoss() num_epochs 5 for epoch in range(num_epochs): model.train() total_loss 0 correct 0 total 0 for batch_x, batch_y in dataloader: optimizer.zero_grad() output model(batch_x) loss criterion(output, batch_y) loss.backward() optimizer.step() total_loss loss.item() _, predicted output.max(1) correct predicted.eq(batch_y).sum().item() total batch_y.size(0) avg_loss total_loss / len(dataloader) accuracy 100. * correct / total print(fEpoch {epoch1}/{num_epochs} | Loss: {avg_loss:.4f} | Acc: {accuracy:.2f}%) print() if __name__ __main__: demo_basic_flatten() demo_sequential_cnn() demo_lazy_linear() demo_dimension_calculation() demo_variable_input() demo_reshape() demo_full_training() print( * 60) print(所有示例执行完毕) print( * 60)常见陷阱与注意事项1.viewvsreshapevsflattenx torch.randn(4, 3, 8, 8) # view: 要求连续内存不连续时报错 x.view(4, -1) # reshape: 自动处理不连续 x.reshape(4, -1) # flatten: 方法版本 x.flatten(1) # nn.Flatten: 模块版本 nn.Flatten()(x)2. 不要展平 batch 维度# 错误展平了所有维度 x.view(-1) # [4, 3, 8, 8] - [768] # 正确保留 batch 维度 x.view(x.size(0), -1) # [4, 3, 8, 8] - [4, 192] x.flatten(1) # 同上3. 卷积输出尺寸计算# 输入: 32x32, Conv2d(3, 16, 3, padding1), MaxPool2d(2) # Conv: (32 2*1 - 3) / 1 1 32 # Pool: (32 - 2) / 2 1 16 # 展平: 16 * 16 * 16 40964. 内存连续性# 转置操作后 tensor 可能不连续 x torch.randn(4, 3, 8, 8) x_t x.transpose(1, 2) # 不连续 # x_t.view(...) # 报错 x_t.reshape(...) # 安全 x_t.flatten(1) # 安全5. 使用 AdaptiveAvgPool 处理变长输入# 对于变长输入使用全局池化代替展平 model nn.Sequential( nn.Conv2d(3, 64, kernel_size3, padding1), nn.ReLU(), nn.AdaptiveAvgPool2d(1), # 输出 [B, 64, 1, 1] nn.Flatten(), # 输出 [B, 64] nn.Linear(64, 10), ) # 可以接受任意尺寸的输入总结在 PyTorch 的nn.Sequential中展平输入关键要点如下使用nn.Flatten()PyTorch 1.2 内置的展平层最简洁的方式默认保留 batch 维度。自定义 Flatten 模块对于旧版 PyTorch继承nn.Module并在forward中调用x.flatten(1)。使用nn.LazyLinearPyTorch 1.8 支持自动推断输入维度免去手动计算展平维度的麻烦。正确计算展平维度使用卷积输出尺寸公式准确计算channels * height * width。保留 batch 维度展平时从 dim1 开始不要展平 dim0batch 维度。使用reshape而非viewreshape更安全能处理不连续 tensor。变长输入使用全局池化nn.AdaptiveAvgPool2d(1)可以将任意尺寸的特征图变为固定大小。在 forward 中展平如果不想用 Sequential可以在forward方法中直接调用x.view(x.size(0), -1)。通过掌握这些展平技巧可以在nn.Sequential中灵活构建从卷积到全连接的网络结构避免维度不匹配的常见错误。
返回列表