Collate_functions Args: batch (list): input batch for training
(batch)
| 5 | config (class): parameter configurations |
| 6 | """ |
| 7 | def collate_fn(batch): |
| 8 | """Collate_functions |
| 9 | |
| 10 | Args: |
| 11 | batch (list): input batch for training |
| 12 | """ |
| 13 | if config.TRAINING.IS_TRAIN and config.TRAINING.BATCH.BATCH_TRANSFORM: |
| 14 | pass |
| 15 | return batch |
| 16 | return collate_fn |
nothing calls this directly
no outgoing calls
no test coverage detected