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

deploy_age2.prototxt 2.3 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
  1. name: "CaffeNet"
  2. input: "data"
  3. input_dim: 1
  4. input_dim: 3
  5. input_dim: 227
  6. input_dim: 227
  7. layer {
  8. name: "conv1"
  9. type: "Convolution"
  10. bottom: "data"
  11. top: "conv1"
  12. convolution_param {
  13. num_output: 96
  14. kernel_size: 7
  15. stride: 4
  16. }
  17. }
  18. layer {
  19. name: "relu1"
  20. type: "ReLU"
  21. bottom: "conv1"
  22. top: "conv1"
  23. }
  24. layer {
  25. name: "pool1"
  26. type: "Pooling"
  27. bottom: "conv1"
  28. top: "pool1"
  29. pooling_param {
  30. pool: MAX
  31. kernel_size: 3
  32. stride: 2
  33. }
  34. }
  35. layer {
  36. name: "norm1"
  37. type: "LRN"
  38. bottom: "pool1"
  39. top: "norm1"
  40. lrn_param {
  41. local_size: 5
  42. alpha: 0.0001
  43. beta: 0.75
  44. }
  45. }
  46. layer {
  47. name: "conv2"
  48. type: "Convolution"
  49. bottom: "norm1"
  50. top: "conv2"
  51. convolution_param {
  52. num_output: 256
  53. pad: 2
  54. kernel_size: 5
  55. }
  56. }
  57. layer {
  58. name: "relu2"
  59. type: "ReLU"
  60. bottom: "conv2"
  61. top: "conv2"
  62. }
  63. layer {
  64. name: "pool2"
  65. type: "Pooling"
  66. bottom: "conv2"
  67. top: "pool2"
  68. pooling_param {
  69. pool: MAX
  70. kernel_size: 3
  71. stride: 2
  72. }
  73. }
  74. layer {
  75. name: "norm2"
  76. type: "LRN"
  77. bottom: "pool2"
  78. top: "norm2"
  79. lrn_param {
  80. local_size: 5
  81. alpha: 0.0001
  82. beta: 0.75
  83. }
  84. }
  85. layer {
  86. name: "conv3"
  87. type: "Convolution"
  88. bottom: "norm2"
  89. top: "conv3"
  90. convolution_param {
  91. num_output: 384
  92. pad: 1
  93. kernel_size: 3
  94. }
  95. }
  96. layer {
  97. name: "relu3"
  98. type: "ReLU"
  99. bottom: "conv3"
  100. top: "conv3"
  101. }
  102. layer {
  103. name: "pool5"
  104. type: "Pooling"
  105. bottom: "conv3"
  106. top: "pool5"
  107. pooling_param {
  108. pool: MAX
  109. kernel_size: 3
  110. stride: 2
  111. }
  112. }
  113. layer {
  114. name: "fc6"
  115. type: "InnerProduct"
  116. bottom: "pool5"
  117. top: "fc6"
  118. inner_product_param {
  119. num_output: 512
  120. }
  121. }
  122. layer {
  123. name: "relu6"
  124. type: "ReLU"
  125. bottom: "fc6"
  126. top: "fc6"
  127. }
  128. layer {
  129. name: "drop6"
  130. type: "Dropout"
  131. bottom: "fc6"
  132. top: "fc6"
  133. dropout_param {
  134. dropout_ratio: 0.5
  135. }
  136. }
  137. layer {
  138. name: "fc7"
  139. type: "InnerProduct"
  140. bottom: "fc6"
  141. top: "fc7"
  142. inner_product_param {
  143. num_output: 512
  144. }
  145. }
  146. layer {
  147. name: "relu7"
  148. type: "ReLU"
  149. bottom: "fc7"
  150. top: "fc7"
  151. }
  152. layer {
  153. name: "drop7"
  154. type: "Dropout"
  155. bottom: "fc7"
  156. top: "fc7"
  157. dropout_param {
  158. dropout_ratio: 0.5
  159. }
  160. }
  161. layer {
  162. name: "fc8"
  163. type: "InnerProduct"
  164. bottom: "fc7"
  165. top: "fc8"
  166. inner_product_param {
  167. num_output: 8
  168. }
  169. }
  170. layer {
  171. name: "prob"
  172. type: "Softmax"
  173. bottom: "fc8"
  174. top: "prob"
  175. }
Tip!

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

Comments

Loading...