-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmodels.py
More file actions
368 lines (325 loc) · 14 KB
/
Copy pathmodels.py
File metadata and controls
368 lines (325 loc) · 14 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
'''
Secure Triplet Loss Project Repository (https://github.com/jtrpinto/SecureTL)
File: models.py
- Defines the models: the unsecure models of ECG/face that can be trained with
the original triplet loss; and the secure models (with cancellability keys)
that can be trained with the proposed Secure Triplet Loss. The ECG model is
based on our prior work [1] and the face model is based on the Inception
ResNet [2].
References:
[1] JR Pinto and JS Cardoso, "A end-to-end convolutional neural network for
ECG based biometric authentication", in BTAS 2019.
[2] C. Szegedy et al., "Inceptionv4, Inception-ResNet and the Impact of
Residual Connections on Learning", in AAAI 2017.
"Secure Triplet Loss: Achieving Cancelability and Non-Linkability in End-to-End Deep Biometrics"
João Ribeiro Pinto, Miguel V. Correia, and Jaime S. Cardoso
IEEE Transactions on Biometrics, Behavior, and Identity Science
joao.t.pinto@inesctec.pt | https://jtrpinto.github.io
'''
import torch
from torch import nn
from torch.nn import functional as F
class TripletECGNetwork(nn.Module):
# Defines the ECG network that processes a
# single biometric sample. Is used with TripletModel
# for training with the original triplet loss.
def __init__(self, dropout_prob=0.5):
# Defining the structure of the ECG network.
super(TripletECGNetwork, self).__init__()
self.convnet = nn.Sequential(nn.Conv1d(1, 16, 5),
nn.ReLU(),
nn.MaxPool1d(3, stride=3),
nn.Conv1d(16, 16, 5),
nn.ReLU(),
nn.MaxPool1d(3, stride=3),
nn.Conv1d(16, 32, 5),
nn.ReLU(),
nn.MaxPool1d(3, stride=3),
nn.Conv1d(32, 32, 5),
nn.ReLU(),
nn.MaxPool1d(3, stride=3) )
self.dropout = nn.Sequential(nn.Dropout(p=dropout_prob))
self.fc = nn.Sequential(nn.Linear(320, 100),
nn.ReLU(),
nn.Linear(100, 100),
nn.ReLU() )
def forward(self, x):
# Network's inference routine.
h = self.convnet(x)
h = h.view(h.size()[0], -1)
h = self.dropout(h)
output = self.fc(h)
return output
def get_embedding(self, x):
# To get an embedding (template).
return self.forward(x)
class TripletFaceNetwork(nn.Module):
# Defines the face network that processes a
# single biometric sample. Is used with TripletModel
# for training with the original triplet loss.
def __init__(self, pretrained_model, dropout_prob=0.5):
# Defining the structure of the network, based on
# the Inception-ResNet model with pretrained weights.
super(TripletFaceNetwork, self).__init__()
self.conv2d_1a = pretrained_model.conv2d_1a
self.conv2d_2a = pretrained_model.conv2d_2a
self.conv2d_2b = pretrained_model.conv2d_2b
self.maxpool_3a = pretrained_model.maxpool_3a
self.conv2d_3b = pretrained_model.conv2d_3b
self.conv2d_4a = pretrained_model.conv2d_4a
self.conv2d_4b = pretrained_model.conv2d_4b
self.repeat_1 = pretrained_model.repeat_1
self.mixed_6a = pretrained_model.mixed_6a
self.repeat_2 = pretrained_model.repeat_2
self.mixed_7a = pretrained_model.mixed_7a
self.repeat_3 = pretrained_model.repeat_3
self.block8 = pretrained_model.block8
self.avgpool_1a = pretrained_model.avgpool_1a
self.relu = nn.Sequential(nn.ReLU())
self.dropout = nn.Dropout(dropout_prob)
self.fc1 = nn.Sequential(nn.Linear(1792, 100), nn.ReLU())
self.fc2 = nn.Sequential(nn.Linear(100, 100), nn.ReLU())
def forward(self, x):
# Network's inference routine.
x = self.conv2d_1a(x)
x = self.conv2d_2a(x)
x = self.conv2d_2b(x)
x = self.maxpool_3a(x)
x = self.conv2d_3b(x)
x = self.conv2d_4a(x)
x = self.conv2d_4b(x)
x = self.repeat_1(x)
x = self.mixed_6a(x)
x = self.repeat_2(x)
x = self.mixed_7a(x)
x = self.repeat_3(x)
x = self.block8(x)
x = self.avgpool_1a(x)
x = self.relu(x)
x = self.dropout(x)
x = x.view(x.shape[0], -1)
x = self.fc1(x)
x = self.fc2(x)
return x
def get_embedding(self, x):
# To get an embedding (template).
return self.forward(x)
def freeze_parameters(self):
# Freezes parameters in the first part of the
# network to retain VGGFace2 pretrained weights.
for param in self.conv2d_1a.parameters():
param.requires_grad = False
for param in self.conv2d_2a.parameters():
param.requires_grad = False
for param in self.conv2d_2b.parameters():
param.requires_grad = False
for param in self.conv2d_3b.parameters():
param.requires_grad = False
for param in self.conv2d_4a.parameters():
param.requires_grad = False
for param in self.conv2d_4b.parameters():
param.requires_grad = False
for param in self.repeat_1.parameters():
param.requires_grad = False
for param in self.mixed_6a.parameters():
param.requires_grad = False
for param in self.repeat_2.parameters():
param.requires_grad = False
for param in self.mixed_7a.parameters():
param.requires_grad = False
for param in self.repeat_3.parameters():
param.requires_grad = False
def unfreeze_parameters(self):
# Unfreezes the first part of the network.
for param in self.conv2d_1a.parameters():
param.requires_grad = True
for param in self.conv2d_2a.parameters():
param.requires_grad = True
for param in self.conv2d_2b.parameters():
param.requires_grad = True
for param in self.conv2d_3b.parameters():
param.requires_grad = True
for param in self.conv2d_4a.parameters():
param.requires_grad = True
for param in self.conv2d_4b.parameters():
param.requires_grad = True
for param in self.repeat_1.parameters():
param.requires_grad = True
for param in self.mixed_6a.parameters():
param.requires_grad = True
for param in self.repeat_2.parameters():
param.requires_grad = True
for param in self.mixed_7a.parameters():
param.requires_grad = True
for param in self.repeat_3.parameters():
param.requires_grad = True
class SecureECGNetwork(nn.Module):
# Defines the ECG secure network that processes a
# single biometric sample and a key. Is used with
# SecureModel for training with Secure Triplet Loss.
def __init__(self):
# Defining the structure of the ECG secure network.
super(SecureECGNetwork, self).__init__()
self.convnet = nn.Sequential(nn.Conv1d(1, 16, 5),
nn.ReLU(),
nn.MaxPool1d(3, stride=3),
nn.Conv1d(16, 16, 5),
nn.ReLU(),
nn.MaxPool1d(3, stride=3),
nn.Conv1d(16, 32, 5),
nn.ReLU(),
nn.MaxPool1d(3, stride=3),
nn.Conv1d(32, 32, 5),
nn.ReLU(),
nn.MaxPool1d(3, stride=3) )
self.dropout = nn.Sequential(nn.Dropout(p=DROPOUT))
self.fc = nn.Sequential(nn.Linear(420, 100),
nn.ReLU(),
nn.Linear(100, 100),
nn.ReLU() )
def forward(self, x, k):
# Network's inference routine.
h = self.convnet(x)
h = h.view(h.size()[0], -1)
h = self.dropout(h)
h = torch.cat((h, k), dim=1)
output = self.fc(h)
return output
def get_embedding(self, x, k):
# To get a secure embedding (template).
return self.forward(x, k)
class SecureFaceNetwork(nn.Module):
# Defines the face secure network that processes a
# single biometric sample and a key. Is used with
# SecureModel for training with Secure Triplet Loss.
def __init__(self, pretrained_model, dropout_prob=0.5):
# Defining the structure of the secure network, based on
# the Inception-ResNet model with pretrained weights.
super(SecureFaceNetwork, self).__init__()
self.conv2d_1a = pretrained_model.conv2d_1a
self.conv2d_2a = pretrained_model.conv2d_2a
self.conv2d_2b = pretrained_model.conv2d_2b
self.maxpool_3a = pretrained_model.maxpool_3a
self.conv2d_3b = pretrained_model.conv2d_3b
self.conv2d_4a = pretrained_model.conv2d_4a
self.conv2d_4b = pretrained_model.conv2d_4b
self.repeat_1 = pretrained_model.repeat_1
self.mixed_6a = pretrained_model.mixed_6a
self.repeat_2 = pretrained_model.repeat_2
self.mixed_7a = pretrained_model.mixed_7a
self.repeat_3 = pretrained_model.repeat_3
self.block8 = pretrained_model.block8
self.avgpool_1a = pretrained_model.avgpool_1a
self.relu = nn.Sequential(nn.ReLU())
self.dropout = nn.Dropout(dropout_prob)
self.fc1 = nn.Sequential(nn.Linear(1892, 100), nn.ReLU())
self.fc2 = nn.Sequential(nn.Linear(100, 100), nn.ReLU())
def forward(self, x, k):
# Network's inference routine.
x = self.conv2d_1a(x)
x = self.conv2d_2a(x)
x = self.conv2d_2b(x)
x = self.maxpool_3a(x)
x = self.conv2d_3b(x)
x = self.conv2d_4a(x)
x = self.conv2d_4b(x)
x = self.repeat_1(x)
x = self.mixed_6a(x)
x = self.repeat_2(x)
x = self.mixed_7a(x)
x = self.repeat_3(x)
x = self.block8(x)
x = self.avgpool_1a(x)
x = self.relu(x)
x = self.dropout(x)
x = x.view(x.shape[0], -1)
x = torch.cat((x, k), dim=1)
x = self.fc1(x)
x = self.fc2(x)
return x
def get_embedding(self, x, k):
# To get a secure embedding (template).
return self.forward(x, k)
def freeze_parameters(self):
# Freezes parameters in the first part of the
# network to retain VGGFace2 pretrained weights.
for param in self.conv2d_1a.parameters():
param.requires_grad = False
for param in self.conv2d_2a.parameters():
param.requires_grad = False
for param in self.conv2d_2b.parameters():
param.requires_grad = False
for param in self.conv2d_3b.parameters():
param.requires_grad = False
for param in self.conv2d_4a.parameters():
param.requires_grad = False
for param in self.conv2d_4b.parameters():
param.requires_grad = False
for param in self.repeat_1.parameters():
param.requires_grad = False
for param in self.mixed_6a.parameters():
param.requires_grad = False
for param in self.repeat_2.parameters():
param.requires_grad = False
for param in self.mixed_7a.parameters():
param.requires_grad = False
for param in self.repeat_3.parameters():
param.requires_grad = False
def unfreeze_parameters(self):
# Unfreezes the first part of the network.
for param in self.conv2d_1a.parameters():
param.requires_grad = True
for param in self.conv2d_2a.parameters():
param.requires_grad = True
for param in self.conv2d_2b.parameters():
param.requires_grad = True
for param in self.conv2d_3b.parameters():
param.requires_grad = True
for param in self.conv2d_4a.parameters():
param.requires_grad = True
for param in self.conv2d_4b.parameters():
param.requires_grad = True
for param in self.repeat_1.parameters():
param.requires_grad = True
for param in self.mixed_6a.parameters():
param.requires_grad = True
for param in self.repeat_2.parameters():
param.requires_grad = True
for param in self.mixed_7a.parameters():
param.requires_grad = True
for param in self.repeat_3.parameters():
param.requires_grad = True
class TripletModel(nn.Module):
# Defines the model to be trained with the
# original triplet loss. Can be based on either
# TripletECGNetwork or TripletFaceNetwork.
def __init__(self, network):
super(TripletModel, self).__init__()
self.network = network
def forward(self, xA, xP, xN):
# Triplet inference routine.
output_a = self.network(xA)
output_p = self.network(xP)
output_n = self.network(xN)
return output_a, output_p, output_n
def get_embedding(self, x):
# To get an embedding (template).
return self.network(x)
class SecureModel(nn.Module):
# Defines the model to be trained with the
# Secure Triplet Loss. Can be based on either
# SecureECGNetwork or SecureFaceNetwork.
def __init__(self, network):
super(SecureModel, self).__init__()
self.network = network
def forward(self, xA, xP, xN, k1, k2):
# Secure triplet inference routine.
output_a = self.network(xA, k1)
output_p1 = self.network(xP, k1)
output_p2 = self.network(xP, k2)
output_n1 = self.network(xN, k1)
output_n2 = self.network(xN, k2)
return output_a, output_p1, output_p2, output_n1, output_n2
def get_embedding(self, x, k):
# To get a secure embedding (template).
return self.network(x, k)