该仓库收录于PytorchNetHub
- ECCV2020收录 官方库
- 仅加注释,便于理解
python版本 | pytorch版本 | 系统 |
---|---|---|
3.6 | 1.6.0 | Ubuntu |
import torch.nn as nn
from dyrelu import DyReluB
class Model(nn.Module):
def __init__(self):
super(Model, self).__init__()
self.conv1 = nn.Conv2d(3, 10, 5)
self.relu = DyReLUB(10, conv_type='2d')
def forward(self, x):
x = self.conv1(x)
x = self.relu(x)
return x