Inception_v3 | PyTorch
https://pytorch.org/hub/pytorch_vision_inception_v3Inception_v3. import torch model = torch.hub.load('pytorch/vision:v0.10.0', 'inception_v3', pretrained=True) model.eval() All pre-trained models expect input images normalized in the same way, i.e. mini-batches of 3-channel RGB images of shape (3 x H x W), where H and W are expected to be at least 299 . The images have to be loaded in to a range of ...