摘要:
paper 通过密集连接的小卷积核实现细节特征(高频特征提取)提取 import torch.nn as nn class Dense(nn.Module): def __init__(self, in_channels): super(Dense, self).__init__() # self. 阅读全文
posted @ 2024-11-12 10:27
iceeci
阅读(91)
评论(0)
推荐(0)
摘要:
paper 可以借鉴的点:下采样和上次样 融合两个不同尺度特征图 from collections import OrderedDict import torch import torch.nn as nn import torch.nn.functional as F def BasicConv( 阅读全文
posted @ 2024-11-12 09:47
iceeci
阅读(160)
评论(0)
推荐(0)