-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloc_b_shapes.py
35 lines (30 loc) · 853 Bytes
/
loc_b_shapes.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
# Localisation Networks bias shapes
import loc_W_shapes as W
locNet1_b = {
'bc1' : [W.locNet1_W['wc1'][3]],
'bc2' : [W.locNet1_W['wc2'][3]],
'bd1' : [W.locNet1_W['wd1'][1]],
'bd2' : [W.locNet1_W['wd2'][1]],
'out' : [W.locNet1_W['out'][1]]
}
locNet2_b = {
'bc1' : [W.locNet2_W['wc1'][3]],
'bc2' : [W.locNet2_W['wc2'][3]],
'bd1' : [W.locNet2_W['wd1'][1]],
'bd2' : [W.locNet2_W['wd2'][1]],
'out' : [W.locNet2_W['out'][1]]
}
locNet3_b = {
'bc1' : [W.locNet3_W['wc1'][3]],
'bc2' : [W.locNet3_W['wc2'][3]],
'bd1' : [W.locNet3_W['wd1'][1]],
'bd2' : [W.locNet3_W['wd2'][1]],
'out' : [W.locNet3_W['out'][1]]
}
locNet4_b = {
'bc1' : [W.locNet4_W['wc1'][3]],
'bc2' : [W.locNet4_W['wc2'][3]],
'bd1' : [W.locNet4_W['wd1'][1]],
'bd2' : [W.locNet4_W['wd2'][1]],
'out' : [W.locNet4_W['out'][1]]
}