Args: image: 4D tensor of ``self.input_shape`` in ``self.data_format`` Returns: Nx#class logits
(self, image)
| 367 | |
| 368 | @abstractmethod |
| 369 | def get_logits(self, image): |
| 370 | """ |
| 371 | Args: |
| 372 | image: 4D tensor of ``self.input_shape`` in ``self.data_format`` |
| 373 | |
| 374 | Returns: |
| 375 | Nx#class logits |
| 376 | """ |
| 377 | |
| 378 | def optimizer(self): |
| 379 | lr = tf.get_variable('learning_rate', initializer=0.1, trainable=False) |