Same as process_batch(), but called for every batch after it has been generated. **kwargs will have same items as process_batch, and also: - batch_number - index of current batch, from 0 to number of batches-1 - images - torch tensor with all generated imag
(self, p, *args, **kwargs)
| 208 | pass |
| 209 | |
| 210 | def postprocess_batch(self, p, *args, **kwargs): |
| 211 | """ |
| 212 | Same as process_batch(), but called for every batch after it has been generated. |
| 213 | |
| 214 | **kwargs will have same items as process_batch, and also: |
| 215 | - batch_number - index of current batch, from 0 to number of batches-1 |
| 216 | - images - torch tensor with all generated images, with values ranging from 0 to 1; |
| 217 | """ |
| 218 | |
| 219 | pass |
| 220 | |
| 221 | def postprocess_batch_list(self, p, pp: PostprocessBatchListArgs, *args, **kwargs): |
| 222 | """ |
no outgoing calls
no test coverage detected