(self, bottom, name)
| 64 | return self.conv4_4 |
| 65 | |
| 66 | def max_pool(self, bottom, name): |
| 67 | return tf.nn.max_pool(bottom, ksize=[1, 2, 2, 1], |
| 68 | strides=[1, 2, 2, 1], padding='SAME', name=name) |
| 69 | |
| 70 | def conv_layer(self, bottom, name): |
| 71 | with tf.variable_scope(name): |