forked from CoinCheung/pytorch-loss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhswish.py
142 lines (109 loc) · 3.82 KB
/
hswish.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/usr/bin/python
# -*- encoding: utf-8 -*-
import torch
import torch.nn as nn
import torch.nn.functional as F
##
# version 1: use pytorch autograd
class HSwishV1(nn.Module):
def __init__(self):
super(HSwishV1, self).__init__()
def forward(self, feat):
return feat * F.relu6(feat + 3) / 6
##
# version 2: use derived formula to compute grad
class HSwishFunctionV2(torch.autograd.Function):
@staticmethod
def forward(ctx, feat):
# act = (feat + 3).mul_(feat).div_(6).clip_(0)
act = F.relu6(feat + 3).mul_(feat).div_(6)
ctx.variables = feat
return act
@staticmethod
def backward(ctx, grad_output):
feat = ctx.variables
grad = F.relu6(feat + 3).div_(6)
grad.add_(torch.where(
torch.eq(-3 < feat, feat < 3),
torch.ones_like(feat).div_(6),
torch.zeros_like(feat)).mul_(feat))
grad *= grad_output
return grad
class HSwishV2(nn.Module):
def __init__(self):
super(HSwishV2, self).__init__()
def forward(self, feat):
return HSwishFunctionV2.apply(feat)
##
# version 3: write with cuda which requires less memory and can be faster
import swish_cpp
class HSwishFunctionV3(torch.autograd.Function):
@staticmethod
def forward(ctx, feat):
ctx.feat = feat
return swish_cpp.hswish_forward(feat)
@staticmethod
def backward(ctx, grad_output):
feat = ctx.feat
return swish_cpp.hswish_backward(grad_output, feat)
class HSwishV3(nn.Module):
def __init__(self):
super(HSwishV3, self).__init__()
def forward(self, feat):
return HSwishFunctionV3.apply(feat)
if __name__ == "__main__":
import torchvision
net = torchvision.models.resnet50(pretrained=True)
sd = {k: v for k, v in net.state_dict().items() if k.startswith('conv1.') or k.startswith('bn1.')}
class Net(nn.Module):
def __init__(self, act='hswishv1'):
super(Net, self).__init__()
self.conv1 = nn.Conv2d(3, 64, 7, 2, 3)
self.bn1 = nn.BatchNorm2d(64)
if act == 'hswishv1':
self.act1 = HSwishV1()
elif act == 'hswishv2':
self.act1 = HSwishV2()
elif act == 'hswishv3':
self.act1 = HSwishV3()
self.dense = nn.Linear(64, 10, bias=False)
self.crit = nn.CrossEntropyLoss()
state = self.state_dict()
state.update(sd)
self.load_state_dict(state)
# torch.nn.init.constant_(self.dense.weight, 1)
def forward(self, feat, label):
feat = self.conv1(feat)
feat = self.bn1(feat)
feat = self.act1(feat)
feat = torch.mean(feat, dim=(2, 3))
logits = self.dense(feat)
loss = self.crit(logits, label)
return loss
net1 = Net(act='hswishv1')
net2 = Net(act='hswishv3')
net2.load_state_dict(net1.state_dict())
net1.cuda()
net2.cuda()
opt1 = torch.optim.SGD(net1.parameters(), lr=1e-3)
opt2 = torch.optim.SGD(net2.parameters(), lr=1e-3)
bs = 32
for i in range(10000):
inten = torch.randn(bs, 3, 224, 224).cuda().detach()
label = torch.randint(0, 10, (bs, )).cuda().detach()
loss1 = net1(inten, label)
opt1.zero_grad()
loss1.backward()
opt1.step()
loss2 = net2(inten, label)
opt2.zero_grad()
loss2.backward()
opt2.step()
if i % 200 == 0:
print('====')
print('loss diff: ', loss1.item() - loss2.item())
print('weight diff: ', torch.sum(torch.abs(net1.conv1.weight - net2.conv1.weight)).item())
from torch.autograd import gradcheck
inten = torch.randn(3, 4, 6, 6).cuda()
inten.requires_grad_(True)
gradcheck(HSwishFunctionV3.apply, [inten, ])