
卷积神经网络
大雄没有叮当猫
好好学习,天天向上
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
卷积神经网络模型之ZFNet模型实现
import torch from torch.nn import functional as F from torch import nn class ZFNet(nn.Module): def __init__(self): super().__init__() self.conv1=nn.Conv2d(in_channels=3,out_chann...原创 2019-03-29 11:04:27 · 1271 阅读 · 0 评论 -
卷积神经网络模型之SPPNet模型实现
from torch import nn import math import torch """ Args: out_side (tuple): Length of side in the pooling results of each pyramid layer. Inputs: - `input`: the input Tens...原创 2019-03-29 13:45:11 · 1026 阅读 · 1 评论