Creates the initial results from the first batch outputs. Arguments: batch_outs: A list of batch-level outputs.
(self, batch_outs)
| 78 | |
| 79 | @abc.abstractmethod |
| 80 | def create(self, batch_outs): |
| 81 | """Creates the initial results from the first batch outputs. |
| 82 | |
| 83 | Arguments: |
| 84 | batch_outs: A list of batch-level outputs. |
| 85 | """ |
| 86 | raise NotImplementedError('Must be implemented in subclasses.') |
| 87 | |
| 88 | @abc.abstractmethod |
| 89 | def aggregate(self, batch_outs, batch_start=None, batch_end=None): |
no outgoing calls
no test coverage detected