
代码
水煮城府、器
中山大学硕士,热爱技术,希望自己能提出一些别人没有看到的问题,也希望用技术来解决这些问题。走的长不长远在于感觉和热情,感觉可以指引你一直走下去,热情则是你的动力。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Unet分割模型——pytorch代码
import torchimport torch.nn as nnclass pub(nn.Module): def __init__(self, in_channel, out_channel, batch_norm=True, keep_size=False): super(pub, self).__init__() pad = 1 if kee...原创 2018-05-19 12:36:47 · 7760 阅读 · 0 评论 -
Unet3D分割模型——pytorch
from torch import nnclass pub(nn.Module): def __init__(self, in_channels, out_channels, batch_norm=True): super(pub, self).__init__() inter_channels = in_channels/2 if in_chann...原创 2018-05-20 17:09:56 · 14077 阅读 · 52 评论