FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
textSimilarityConvNet/models.lua at master · hohoCode/textSimilarityConvNet · GitHub
hohoCode
/
textSimilarityConvNet
Public
forked from
castorini/MP-CNN-Torch
Notifications
You must be signed in to change notification settings
Fork
18
Star
44
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
textSimilarityConvNet
/
models.lua
Copy path
More file actions
More file actions
Latest commit
History
History
History
382 lines (363 loc) · 11.4 KB
Breadcrumbs
textSimilarityConvNet
/
models.lua
Copy path
File metadata and controls
382 lines (363 loc) · 11.4 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
369
370
371
372
373
374
375
376
377
378
379
380
381
function
createModel
(
mdl
,
vocsize
,
Dsize
,
nout
,
KKw
)
--
define model to train
local
network
=
nn
.
Sequential
()
local
featext
=
nn
.
Sequential
()
local
classifier
=
nn
.
Sequential
()
local
conCon1
=
nn
.
Sequential
()
local
conCon2
=
nn
.
Sequential
()
local
conCon3
=
nn
.
Sequential
()
local
conCon4
=
nn
.
Sequential
()
local
parallelConcat1
=
nn
.
Concat
(
1
)
local
parallelConcat2
=
nn
.
Concat
(
1
)
local
parallelConcat3
=
nn
.
Concat
(
1
)
local
parallelConcat4
=
nn
.
Concat
(
1
)
local
parallelConcat5
=
nn
.
Concat
(
1
)
local
D
=
Dsize
local
kW
=
KKw
local
dW
=
1
local
noExtra
=
false
local
nhid1
=
250
local
nhid2
=
250
local
NumFilter
=
D
local
pR
=
2
local
layers
=
1
if
mdl
==
'
deepQueryRankingNgramSimilarityOnevsGroupMaxMinMeanLinearExDGpPoinPercpt
'
then
dofile
"
PaddingReshape.lua
"
deepQuery
=
nn
.
Sequential
()
D
=
Dsize
local
incep1max
=
nn
.
Sequential
()
incep1max
:
add
(
nn
.
TemporalConvolution
(
D
,
NumFilter
,
1
,
dw
))
if
pR
==
1
then
incep1max
:
add
(
nn
.
PReLU
())
else
incep1max
:
add
(
nn
.
Tanh
())
end
incep1max
:
add
(
nn
.
Max
(
1
))
incep1max
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
local
incep2max
=
nn
.
Sequential
()
incep2max
:
add
(
nn
.
Max
(
1
))
incep2max
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
local
combineDepth
=
nn
.
Concat
(
2
)
combineDepth
:
add
(
incep1max
)
combineDepth
:
add
(
incep2max
)
local
ngram
=
kW
for
cc
=
2
,
ngram
do
local
incepMax
=
nn
.
Sequential
()
if
not
noExtra
then
incepMax
:
add
(
nn
.
TemporalConvolution
(
D
,
D
,
1
,
dw
))
--
set
if
pR
==
1
then
incepMax
:
add
(
nn
.
PReLU
())
else
incepMax
:
add
(
nn
.
Tanh
())
end
end
incepMax
:
add
(
nn
.
TemporalConvolution
(
D
,
NumFilter
,
cc
,
dw
))
if
pR
==
1
then
incepMax
:
add
(
nn
.
PReLU
())
else
incepMax
:
add
(
nn
.
Tanh
())
end
incepMax
:
add
(
nn
.
Max
(
1
))
incepMax
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
combineDepth
:
add
(
incepMax
)
end
local
incep1min
=
nn
.
Sequential
()
incep1min
:
add
(
nn
.
TemporalConvolution
(
D
,
NumFilter
,
1
,
dw
))
if
pR
==
1
then
incep1min
:
add
(
nn
.
PReLU
())
else
incep1min
:
add
(
nn
.
Tanh
())
end
incep1min
:
add
(
nn
.
Min
(
1
))
incep1min
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
local
incep2min
=
nn
.
Sequential
()
incep2min
:
add
(
nn
.
Min
(
1
))
incep2min
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
combineDepth
:
add
(
incep1min
)
combineDepth
:
add
(
incep2min
)
for
cc
=
2
,
ngram
do
local
incepMin
=
nn
.
Sequential
()
if
not
noExtra
then
incepMin
:
add
(
nn
.
TemporalConvolution
(
D
,
D
,
1
,
dw
))
--
set
if
pR
==
1
then
incepMin
:
add
(
nn
.
PReLU
())
else
incepMin
:
add
(
nn
.
Tanh
())
end
end
incepMin
:
add
(
nn
.
TemporalConvolution
(
D
,
NumFilter
,
cc
,
dw
))
if
pR
==
1
then
incepMin
:
add
(
nn
.
PReLU
())
else
incepMin
:
add
(
nn
.
Tanh
())
end
incepMin
:
add
(
nn
.
Min
(
1
))
incepMin
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
combineDepth
:
add
(
incepMin
)
end
local
incep1mean
=
nn
.
Sequential
()
incep1mean
:
add
(
nn
.
TemporalConvolution
(
D
,
NumFilter
,
1
,
dw
))
if
pR
==
1
then
incep1mean
:
add
(
nn
.
PReLU
())
else
incep1mean
:
add
(
nn
.
Tanh
())
end
incep1mean
:
add
(
nn
.
Mean
(
1
))
incep1mean
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
local
incep2mean
=
nn
.
Sequential
()
incep2mean
:
add
(
nn
.
Mean
(
1
))
incep2mean
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
combineDepth
:
add
(
incep1mean
)
combineDepth
:
add
(
incep2mean
)
for
cc
=
2
,
ngram
do
local
incepMean
=
nn
.
Sequential
()
if
not
noExtra
then
incepMean
:
add
(
nn
.
TemporalConvolution
(
D
,
D
,
1
,
dw
))
--
set
if
pR
==
1
then
incepMean
:
add
(
nn
.
PReLU
())
else
incepMean
:
add
(
nn
.
Tanh
())
end
end
incepMean
:
add
(
nn
.
TemporalConvolution
(
D
,
NumFilter
,
cc
,
dw
))
if
pR
==
1
then
incepMean
:
add
(
nn
.
PReLU
())
else
incepMean
:
add
(
nn
.
Tanh
())
end
incepMean
:
add
(
nn
.
Mean
(
1
))
incepMean
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
combineDepth
:
add
(
incepMean
)
end
local
conceptFNum
=
20
for
cc
=
1
,
ngram
do
local
perConcept
=
nn
.
Sequential
()
perConcept
:
add
(
nn
.
PaddingReshape
(
2
,
2
))
--
set
perConcept
:
add
(
nn
.
SpatialConvolutionMM
(
1
,
conceptFNum
,
1
,
cc
))
--
set
perConcept
:
add
(
nn
.
Max
(
2
))
--
set
if
pR
==
1
then
perConcept
:
add
(
nn
.
PReLU
())
else
perConcept
:
add
(
nn
.
Tanh
())
end
perConcept
:
add
(
nn
.
Transpose
({
1
,
2
}))
combineDepth
:
add
(
perConcept
)
end
for
cc
=
1
,
ngram
do
local
perConcept
=
nn
.
Sequential
()
perConcept
:
add
(
nn
.
PaddingReshape
(
2
,
2
))
--
set
perConcept
:
add
(
nn
.
SpatialConvolutionMM
(
1
,
conceptFNum
,
1
,
cc
))
--
set
perConcept
:
add
(
nn
.
Min
(
2
))
--
set
if
pR
==
1
then
perConcept
:
add
(
nn
.
PReLU
())
else
perConcept
:
add
(
nn
.
Tanh
())
end
perConcept
:
add
(
nn
.
Transpose
({
1
,
2
}))
combineDepth
:
add
(
perConcept
)
end
featext
:
add
(
combineDepth
)
local
items
=
(
ngram
+
1
)
*
3
local
separator
=
items
+
2
*
conceptFNum
*
ngram
local
sepModel
=
0
if
sepModel
==
1
then
modelQ
=
featext
:
clone
()
else
modelQ
=
featext
:
clone
(
'
weight
'
,
'
bias
'
,
'
gradWeight
'
,
'
gradBias
'
)
end
paraQuery
=
nn
.
ParallelTable
()
paraQuery
:
add
(
modelQ
)
paraQuery
:
add
(
featext
)
deepQuery
:
add
(
paraQuery
)
deepQuery
:
add
(
nn
.
JoinTable
(
2
))
d
=
nn
.
Concat
(
1
)
for
i
=
1
,
items
do
if
i
<=
items
/
3
then
for
j
=
1
,
items
/
3
do
local
connection
=
nn
.
Sequential
()
local
minus
=
nn
.
Concat
(
2
)
local
c1
=
nn
.
Sequential
()
local
c2
=
nn
.
Sequential
()
c1
:
add
(
nn
.
Select
(
2
,
i
))
--
== D, not D*1
c1
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
--
D*1 here
c2
:
add
(
nn
.
Select
(
2
,
separator
+
j
))
c2
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
minus
:
add
(
c1
)
minus
:
add
(
c2
)
connection
:
add
(
minus
)
--
D*2
local
similarityC
=
nn
.
Concat
(
1
)
--
multi similarity criteria
local
s1
=
nn
.
Sequential
()
s1
:
add
(
nn
.
SplitTable
(
2
))
s1
:
add
(
nn
.
PairwiseDistance
(
2
))
--
scalar
local
s2
=
nn
.
Sequential
()
if
1
<
3
then
s2
:
add
(
nn
.
SplitTable
(
2
))
else
s2
:
add
(
nn
.
Transpose
({
1
,
2
}))
s2
:
add
(
nn
.
SoftMax
())
s2
:
add
(
nn
.
SplitTable
(
1
))
end
s2
:
add
(
nn
.
CsDis
())
--
scalar
local
s3
=
nn
.
Sequential
()
s3
:
add
(
nn
.
SplitTable
(
2
))
s3
:
add
(
nn
.
CSubTable
())
--
linear
s3
:
add
(
nn
.
Abs
())
--
linear
similarityC
:
add
(
s1
)
similarityC
:
add
(
s2
)
similarityC
:
add
(
s3
)
connection
:
add
(
similarityC
)
--
scalar
d
:
add
(
connection
)
end
elseif
i
<=
2
*
items
/
3
then
for
j
=
1
+
items
/
3
,
2
*
items
/
3
do
local
connection
=
nn
.
Sequential
()
local
minus
=
nn
.
Concat
(
2
)
local
c1
=
nn
.
Sequential
()
local
c2
=
nn
.
Sequential
()
c1
:
add
(
nn
.
Select
(
2
,
i
))
--
== NumFilter, not NumFilter*1
c1
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
--
NumFilter*1 here
c2
:
add
(
nn
.
Select
(
2
,
separator
+
j
))
c2
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
minus
:
add
(
c1
)
minus
:
add
(
c2
)
connection
:
add
(
minus
)
--
D*2
local
similarityC
=
nn
.
Concat
(
1
)
--
multi similarity criteria
local
s1
=
nn
.
Sequential
()
s1
:
add
(
nn
.
SplitTable
(
2
))
s1
:
add
(
nn
.
PairwiseDistance
(
2
))
--
scalar
local
s2
=
nn
.
Sequential
()
if
1
<
3
then
s2
:
add
(
nn
.
SplitTable
(
2
))
else
s2
:
add
(
nn
.
Transpose
({
1
,
2
}))
--
D*2 -> 2*D
s2
:
add
(
nn
.
SoftMax
())
s2
:
add
(
nn
.
SplitTable
(
1
))
end
s2
:
add
(
nn
.
CsDis
())
--
scalar
local
s3
=
nn
.
Sequential
()
s3
:
add
(
nn
.
SplitTable
(
2
))
s3
:
add
(
nn
.
CSubTable
())
--
linear
s3
:
add
(
nn
.
Abs
())
--
linear
similarityC
:
add
(
s1
)
similarityC
:
add
(
s2
)
similarityC
:
add
(
s3
)
connection
:
add
(
similarityC
)
--
scalar
d
:
add
(
connection
)
end
else
for
j
=
1
+
2
*
items
/
3
,
items
do
local
connection
=
nn
.
Sequential
()
local
minus
=
nn
.
Concat
(
2
)
local
c1
=
nn
.
Sequential
()
local
c2
=
nn
.
Sequential
()
c1
:
add
(
nn
.
Select
(
2
,
i
))
--
== D, not D*1
c1
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
--
D*1 here
c2
:
add
(
nn
.
Select
(
2
,
separator
+
j
))
c2
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
minus
:
add
(
c1
)
minus
:
add
(
c2
)
connection
:
add
(
minus
)
--
D*2
local
similarityC
=
nn
.
Concat
(
1
)
--
multi similarity criteria
local
s1
=
nn
.
Sequential
()
s1
:
add
(
nn
.
SplitTable
(
2
))
s1
:
add
(
nn
.
PairwiseDistance
(
2
))
--
scalar
local
s2
=
nn
.
Sequential
()
if
1
<
3
then
s2
:
add
(
nn
.
SplitTable
(
2
))
else
s2
:
add
(
nn
.
Transpose
({
1
,
2
}))
--
D*2 -> 2*D
s2
:
add
(
nn
.
SoftMax
())
s2
:
add
(
nn
.
SplitTable
(
1
))
end
s2
:
add
(
nn
.
CsDis
())
--
scalar
local
s3
=
nn
.
Sequential
()
s3
:
add
(
nn
.
SplitTable
(
2
))
s3
:
add
(
nn
.
CSubTable
())
--
linear
s3
:
add
(
nn
.
Abs
())
--
linear
similarityC
:
add
(
s1
)
similarityC
:
add
(
s2
)
similarityC
:
add
(
s3
)
connection
:
add
(
similarityC
)
--
scalar
d
:
add
(
connection
)
end
end
end
for
i
=
1
,
NumFilter
do
for
j
=
1
,
3
do
local
connection
=
nn
.
Sequential
()
connection
:
add
(
nn
.
Select
(
1
,
i
))
--
== 2items
connection
:
add
(
nn
.
Reshape
(
2
*
separator
,
1
))
--
2items*1 here
local
minus
=
nn
.
Concat
(
2
)
local
c1
=
nn
.
Sequential
()
local
c2
=
nn
.
Sequential
()
if
j
==
1
then
c1
:
add
(
nn
.
Narrow
(
1
,
1
,
ngram
+
1
))
--
first half (items/3)*1
c2
:
add
(
nn
.
Narrow
(
1
,
separator
+
1
,
ngram
+
1
))
--
first half (items/3)*1
elseif
j
==
2
then
c1
:
add
(
nn
.
Narrow
(
1
,
ngram
+
2
,
ngram
+
1
))
--
c2
:
add
(
nn
.
Narrow
(
1
,
separator
+
ngram
+
2
,
ngram
+
1
))
else
c1
:
add
(
nn
.
Narrow
(
1
,
2
*
(
ngram
+
1
)
+
1
,
ngram
+
1
))
c2
:
add
(
nn
.
Narrow
(
1
,
separator
+
2
*
(
ngram
+
1
)
+
1
,
ngram
+
1
))
--
each is ngram+1 portion (max or min or mean)
end
minus
:
add
(
c1
)
minus
:
add
(
c2
)
connection
:
add
(
minus
)
--
(items/3)*2
local
similarityC
=
nn
.
Concat
(
1
)
local
s1
=
nn
.
Sequential
()
s1
:
add
(
nn
.
SplitTable
(
2
))
s1
:
add
(
nn
.
PairwiseDistance
(
2
))
--
scalar
local
s2
=
nn
.
Sequential
()
if
1
>=
2
then
s2
:
add
(
nn
.
Transpose
({
1
,
2
}))
--
(items/3)*2 -> 2*(items/3)
s2
:
add
(
nn
.
SoftMax
())
--
for softmax have to do transpose from (item/3)*2 -> 2*(item/3)
s2
:
add
(
nn
.
SplitTable
(
1
))
--
softmax only works on row
else
s2
:
add
(
nn
.
SplitTable
(
2
))
--
(items/3)*2
end
s2
:
add
(
nn
.
CsDis
())
--
scalar
similarityC
:
add
(
s1
)
similarityC
:
add
(
s2
)
connection
:
add
(
similarityC
)
--
scalar
d
:
add
(
connection
)
end
end
for
i
=
items
+
1
,
separator
do
local
connection
=
nn
.
Sequential
()
local
minus
=
nn
.
Concat
(
2
)
local
c1
=
nn
.
Sequential
()
local
c2
=
nn
.
Sequential
()
c1
:
add
(
nn
.
Select
(
2
,
i
))
--
== D, not D*1
c1
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
--
D*1 here
c2
:
add
(
nn
.
Select
(
2
,
separator
+
i
))
c2
:
add
(
nn
.
Reshape
(
NumFilter
,
1
))
minus
:
add
(
c1
)
minus
:
add
(
c2
)
connection
:
add
(
minus
)
--
D*2
local
similarityC
=
nn
.
Concat
(
1
)
local
s1
=
nn
.
Sequential
()
s1
:
add
(
nn
.
SplitTable
(
2
))
s1
:
add
(
nn
.
PairwiseDistance
(
2
))
--
scalar
local
s2
=
nn
.
Sequential
()
if
1
<
3
then
s2
:
add
(
nn
.
SplitTable
(
2
))
else
s2
:
add
(
nn
.
Transpose
({
1
,
2
}))
s2
:
add
(
nn
.
SoftMax
())
s2
:
add
(
nn
.
SplitTable
(
1
))
end
s2
:
add
(
nn
.
CsDis
())
--
scalar
local
s3
=
nn
.
Sequential
()
s3
:
add
(
nn
.
SplitTable
(
2
))
s3
:
add
(
nn
.
CSubTable
())
--
linear
s3
:
add
(
nn
.
Abs
())
--
linear
similarityC
:
add
(
s1
)
similarityC
:
add
(
s2
)
similarityC
:
add
(
s3
)
connection
:
add
(
similarityC
)
--
scalar
d
:
add
(
connection
)
end
deepQuery
:
add
(
d
)
return
deepQuery
end
end
Back
|
FazBrowse Home
|
New Git URL