model_inception_v3 {torchvision} | R Documentation |
Inception v3 model
Description
Architecture from Rethinking the Inception Architecture for Computer Vision The required minimum input size of the model is 75x75.
Usage
model_inception_v3(pretrained = FALSE, progress = TRUE, ...)
Arguments
pretrained |
(bool): If True, returns a model pre-trained on ImageNet |
progress |
(bool): If True, displays a progress bar of the download to stderr |
... |
Used to pass keyword arguments to the Inception module:
|
Note
Important: In contrast to the other models the inception_v3 expects tensors with a size of N x 3 x 299 x 299, so ensure your images are sized accordingly.
[Package torchvision version 0.6.0 Index]