r"""Constructs a Reid-ResNet-18 model. Args: pretrained (bool): If True, returns a model pre-trained on ImageNet progress (bool): If True, displays a progress bar of the download to stderr
(pretrained=False, progress=True, **kwargs)
| 46 | |
| 47 | |
| 48 | def reid_resnet18(pretrained=False, progress=True, **kwargs): |
| 49 | r"""Constructs a Reid-ResNet-18 model. |
| 50 | |
| 51 | Args: |
| 52 | pretrained (bool): If True, returns a model pre-trained on ImageNet |
| 53 | progress (bool): If True, displays a progress bar of the download to stderr |
| 54 | """ |
| 55 | return _reid_resnet('resnet18', BasicBlock, [2, 2, 2, 2], pretrained, progress, |
| 56 | **kwargs) |
| 57 | |
| 58 | |
| 59 | def reid_resnet34(pretrained=False, progress=True, **kwargs): |
nothing calls this directly
no test coverage detected