()
| 15 | MODEL_PATH = 'Models/model.caffemodel' # For successfully loading caffe model, .caffemodel file is required. |
| 16 | |
| 17 | def load_calibration_dataset() -> Iterable: |
| 18 | return [torch.rand(size=INPUT_SHAPE) for _ in range(32)] |
| 19 | |
| 20 | def collate_fn(batch: torch.Tensor) -> torch.Tensor: |
| 21 | return batch.to(DEVICE) |
no outgoing calls
no test coverage detected