Skip to content

Commit

Permalink
fix densenet example in README (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
stegben authored and fmassa committed Oct 2, 2017
1 parent 87fe75b commit 88e81ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ constructor:
alexnet = models.alexnet()
vgg16 = models.vgg16()
squeezenet = models.squeezenet1_0()
densenet = models.densenet_161()
densenet = models.densenet161()
inception = models.inception_v3()
We provide pre-trained models for the ResNet variants, SqueezeNet 1.0 and 1.1,
Expand All @@ -280,7 +280,7 @@ These can be constructed by passing ``pretrained=True``:
alexnet = models.alexnet(pretrained=True)
squeezenet = models.squeezenet1_0(pretrained=True)
vgg16 = models.vgg16(pretrained=True)
densenet = models.densenet_161(pretrained=True)
densenet = models.densenet161(pretrained=True)
inception = models.inception_v3(pretrained=True)
Expand Down

0 comments on commit 88e81ce

Please sign in to comment.