-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinception_b_shapes.py
93 lines (83 loc) · 3.11 KB
/
inception_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
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
# Inception Layers bias Shapes
import inception_W_shapes as W
inceptNet3a_b = {
'b1x1' : [W.inceptNet3a_W['w1x1'][3]],
'b3x3red' : [W.inceptNet3a_W['w3x3red'][3]],
'b3x3' : [W.inceptNet3a_W['w3x3'][3]],
'b5x5red' : [W.inceptNet3a_W['w5x5red'][3]],
'b5x5' : [W.inceptNet3a_W['w5x5'][3]],
'b3x3redp': [W.inceptNet3a_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet3a_W['w3x3p'][3]]
}
inceptNet3b_b = {
'b1x1' : [W.inceptNet3b_W['w1x1'][3]],
'b3x3red' : [W.inceptNet3b_W['w3x3red'][3]],
'b3x3' : [W.inceptNet3b_W['w3x3'][3]],
'b5x5red' : [W.inceptNet3b_W['w5x5red'][3]],
'b5x5' : [W.inceptNet3b_W['w5x5'][3]],
'b3x3redp': [W.inceptNet3b_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet3b_W['w3x3p'][3]]
}
inceptNet3_b = {
'b1x1' : [W.inceptNet3_W['w1x1'][3]],
'b3x3red' : [W.inceptNet3_W['w3x3red'][3]],
'b3x3' : [W.inceptNet3_W['w3x3'][3]],
'b5x5red' : [W.inceptNet3_W['w5x5red'][3]],
'b5x5' : [W.inceptNet3_W['w5x5'][3]],
'b3x3redp': [W.inceptNet3_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet3_W['w3x3p'][3]]
}
inceptNet4_b = {
'b1x1' : [W.inceptNet4_W['w1x1'][3]],
'b3x3red' : [W.inceptNet4_W['w3x3red'][3]],
'b3x3' : [W.inceptNet4_W['w3x3'][3]],
'b5x5red' : [W.inceptNet4_W['w5x5red'][3]],
'b5x5' : [W.inceptNet4_W['w5x5'][3]],
'b3x3redp': [W.inceptNet4_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet4_W['w3x3p'][3]]
}
inceptNet5_b = {
'b1x1' : [W.inceptNet5_W['w1x1'][3]],
'b3x3red' : [W.inceptNet5_W['w3x3red'][3]],
'b3x3' : [W.inceptNet5_W['w3x3'][3]],
'b5x5red' : [W.inceptNet5_W['w5x5red'][3]],
'b5x5' : [W.inceptNet5_W['w5x5'][3]],
'b3x3redp': [W.inceptNet5_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet5_W['w3x3p'][3]]
}
inceptNet6_b = {
'b1x1' : [W.inceptNet6_W['w1x1'][3]],
'b3x3red' : [W.inceptNet6_W['w3x3red'][3]],
'b3x3' : [W.inceptNet6_W['w3x3'][3]],
'b5x5red' : [W.inceptNet6_W['w5x5red'][3]],
'b5x5' : [W.inceptNet6_W['w5x5'][3]],
'b3x3redp': [W.inceptNet6_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet6_W['w3x3p'][3]]
}
inceptNet7_b = {
'b1x1' : [W.inceptNet7_W['w1x1'][3]],
'b3x3red' : [W.inceptNet7_W['w3x3red'][3]],
'b3x3' : [W.inceptNet7_W['w3x3'][3]],
'b5x5red' : [W.inceptNet7_W['w5x5red'][3]],
'b5x5' : [W.inceptNet7_W['w5x5'][3]],
'b3x3redp': [W.inceptNet7_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet7_W['w3x3p'][3]]
}
inceptNet8_b = {
'b1x1' : [W.inceptNet8_W['w1x1'][3]],
'b3x3red' : [W.inceptNet8_W['w3x3red'][3]],
'b3x3' : [W.inceptNet8_W['w3x3'][3]],
'b5x5red' : [W.inceptNet8_W['w5x5red'][3]],
'b5x5' : [W.inceptNet8_W['w5x5'][3]],
'b3x3redp': [W.inceptNet8_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet8_W['w3x3p'][3]]
}
inceptNet9_b = {
'b1x1' : [W.inceptNet9_W['w1x1'][3]],
'b3x3red' : [W.inceptNet9_W['w3x3red'][3]],
'b3x3' : [W.inceptNet9_W['w3x3'][3]],
'b5x5red' : [W.inceptNet9_W['w5x5red'][3]],
'b5x5' : [W.inceptNet9_W['w5x5'][3]],
'b3x3redp': [W.inceptNet9_W['w3x3redp'][3]],
'b3x3p' : [W.inceptNet9_W['w3x3p'][3]]
}