From 59307dcef1ec80031691e2bc022ea2a04180430a Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Sat, 7 May 2022 15:48:59 +0100 Subject: [PATCH] Fix InceptionV3 docs --- docs/source/models/inception.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/models/inception.rst b/docs/source/models/inception.rst index 6ba42fc2385..72aa9724d41 100644 --- a/docs/source/models/inception.rst +++ b/docs/source/models/inception.rst @@ -3,8 +3,8 @@ Inception V3 .. currentmodule:: torchvision.models -The EfficientNet model is based on the `Rethinking the Inception Architecture for Computer Vision `__ -paper. +The InceptionV3 model is based on the `Rethinking the Inception Architecture for +Computer Vision `__ paper. Model builders @@ -12,7 +12,7 @@ Model builders The following model builders can be used to instanciate an InceptionV3 model, with or without pre-trained weights. All the model builders internally rely on the -``torchvision.models.efficientnet.Inception3`` base class. Please refer to the `source +``torchvision.models.inception.Inception3`` base class. Please refer to the `source code `_ for more details about this class.