Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

face_full_conv.prototxt 2.9 KB

You have to be logged in to leave a comment. Sign In
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
  1. # Fully convolutional network version of CaffeNet.
  2. name: "CaffeNetConv"
  3. input: "data"
  4. input_dim: 1
  5. input_dim: 3
  6. input_dim: 227
  7. input_dim: 227
  8. layer {
  9. name: "conv1"
  10. type: "Convolution"
  11. bottom: "data"
  12. top: "conv1"
  13. convolution_param {
  14. num_output: 96
  15. kernel_size: 11
  16. stride: 4
  17. }
  18. }
  19. layer {
  20. name: "relu1"
  21. type: "ReLU"
  22. bottom: "conv1"
  23. top: "conv1"
  24. }
  25. layer {
  26. name: "pool1"
  27. type: "Pooling"
  28. bottom: "conv1"
  29. top: "pool1"
  30. pooling_param {
  31. pool: MAX
  32. kernel_size: 3
  33. stride: 2
  34. }
  35. }
  36. layer {
  37. name: "norm1"
  38. type: "LRN"
  39. bottom: "pool1"
  40. top: "norm1"
  41. lrn_param {
  42. local_size: 5
  43. alpha: 0.0001
  44. beta: 0.75
  45. }
  46. }
  47. layer {
  48. name: "conv2"
  49. type: "Convolution"
  50. bottom: "norm1"
  51. top: "conv2"
  52. convolution_param {
  53. num_output: 256
  54. pad: 2
  55. kernel_size: 5
  56. group: 2
  57. }
  58. }
  59. layer {
  60. name: "relu2"
  61. type: "ReLU"
  62. bottom: "conv2"
  63. top: "conv2"
  64. }
  65. layer {
  66. name: "pool2"
  67. type: "Pooling"
  68. bottom: "conv2"
  69. top: "pool2"
  70. pooling_param {
  71. pool: MAX
  72. kernel_size: 3
  73. stride: 2
  74. }
  75. }
  76. layer {
  77. name: "norm2"
  78. type: "LRN"
  79. bottom: "pool2"
  80. top: "norm2"
  81. lrn_param {
  82. local_size: 5
  83. alpha: 0.0001
  84. beta: 0.75
  85. }
  86. }
  87. layer {
  88. name: "conv3"
  89. type: "Convolution"
  90. bottom: "norm2"
  91. top: "conv3"
  92. convolution_param {
  93. num_output: 384
  94. pad: 1
  95. kernel_size: 3
  96. }
  97. }
  98. layer {
  99. name: "relu3"
  100. type: "ReLU"
  101. bottom: "conv3"
  102. top: "conv3"
  103. }
  104. layer {
  105. name: "conv4"
  106. type: "Convolution"
  107. bottom: "conv3"
  108. top: "conv4"
  109. convolution_param {
  110. num_output: 384
  111. pad: 1
  112. kernel_size: 3
  113. group: 2
  114. }
  115. }
  116. layer {
  117. name: "relu4"
  118. type: "ReLU"
  119. bottom: "conv4"
  120. top: "conv4"
  121. }
  122. layer {
  123. name: "conv5"
  124. type: "Convolution"
  125. bottom: "conv4"
  126. top: "conv5"
  127. convolution_param {
  128. num_output: 256
  129. pad: 1
  130. kernel_size: 3
  131. group: 2
  132. }
  133. }
  134. layer {
  135. name: "relu5"
  136. type: "ReLU"
  137. bottom: "conv5"
  138. top: "conv5"
  139. }
  140. layer {
  141. name: "pool5"
  142. type: "Pooling"
  143. bottom: "conv5"
  144. top: "pool5"
  145. pooling_param {
  146. pool: MAX
  147. kernel_size: 3
  148. stride: 2
  149. }
  150. }
  151. layer {
  152. name: "fc6-conv"
  153. type: "Convolution"
  154. bottom: "pool5"
  155. top: "fc6-conv"
  156. convolution_param {
  157. num_output: 4096
  158. kernel_size: 6
  159. }
  160. }
  161. layer {
  162. name: "relu6"
  163. type: "ReLU"
  164. bottom: "fc6-conv"
  165. top: "fc6-conv"
  166. }
  167. layer {
  168. name: "drop6"
  169. type: "Dropout"
  170. bottom: "fc6-conv"
  171. top: "fc6-conv"
  172. dropout_param {
  173. dropout_ratio: 0.5
  174. }
  175. }
  176. layer {
  177. name: "fc7-conv"
  178. type: "Convolution"
  179. bottom: "fc6-conv"
  180. top: "fc7-conv"
  181. convolution_param {
  182. num_output: 4096
  183. kernel_size: 1
  184. }
  185. }
  186. layer {
  187. name: "relu7"
  188. type: "ReLU"
  189. bottom: "fc7-conv"
  190. top: "fc7-conv"
  191. }
  192. layer {
  193. name: "drop7"
  194. type: "Dropout"
  195. bottom: "fc7-conv"
  196. top: "fc7-conv"
  197. dropout_param {
  198. dropout_ratio: 0.5
  199. }
  200. }
  201. layer {
  202. name: "fc8-conv"
  203. type: "Convolution"
  204. bottom: "fc7-conv"
  205. top: "fc8-conv"
  206. convolution_param {
  207. num_output: 2
  208. kernel_size: 1
  209. }
  210. }
  211. layer {
  212. name: "prob"
  213. type: "Softmax"
  214. bottom: "fc8-conv"
  215. top: "prob"
  216. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...