pytorch提取某一层网络特征图

pytorch提取某一层网络特征图

  • 由于pytorch的原模型很多用到了nn.Sequential,因此中间的特征图难提取。
  • 解决办法:自己写一个forward函数,然后索引需要的那一层。
import torch
import torchvision.models as models
import numpy as np
import torch.nn.functional as F

input_data = torch.randn(1,3,256, 256)
def resnet_cifar(net,input_data):
    x = net.conv1(input_data)
    x = net.bn1(x)
    x = F.relu(x)
    x = net.layer1(x)
    x = net.layer2(x)
    x = net.layer3(x)
    x = net.layer4[0].conv1(x)  #这样就提取了layer4第一块的第一个卷积层的输出
    x=x.view(x.shape[0],-1)
    return x

model = models.resnet18()
x = resnet_cifar(model,input_data)

你可能感兴趣的:(python,pytorch)