(self, in_)
| 115 | self.input_scale = {} |
| 116 | |
| 117 | def __check_input(self, in_): |
| 118 | if in_ not in self.inputs: |
| 119 | raise Exception('{} is not one of the net inputs: {}'.format( |
| 120 | in_, self.inputs)) |
| 121 | |
| 122 | def preprocess(self, in_, data): |
| 123 | """ |
no outgoing calls
no test coverage detected