2021-10-11
标题 #使用ASPP处理3D体数据
```python-pytorch
import torch
import torch.nn as nn
class ASPP(nn.Module):
def __init__(self, in_channel, out_channel):
super(ASPP, self).__init__()
self.mean = nn.AdaptiveAvgPool3d((1, 1, 1))
self.conv =
原创
2021-10-11 20:01:12 ·
152 阅读 ·
0 评论