(self, model, input_blob)
| 972 | return helper |
| 973 | |
| 974 | def prepare_input(self, model, input_blob): |
| 975 | input_blob = _RectifyName(input_blob) |
| 976 | with core.NameScope(self.name or ''): |
| 977 | return self.cells[0].prepare_input(model, input_blob) |
| 978 | |
| 979 | def _apply( |
| 980 | self, |
nothing calls this directly
no test coverage detected