Skip to content

Commit 4837de5

Browse files
committed
Fix docstring typos
1 parent de4f684 commit 4837de5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/convnets/resnets/resnext.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Creates a ResNeXt model with the specified depth, cardinality, and base width.
77
88
# Arguments
99
10-
- `depth`: one of `[50, 101, 152]`. The depth of the ResNet model.
10+
- `depth`: one of `[50, 101, 152]`. The depth of the ResNeXt model.
1111
1212
- `pretrain`: set to `true` to load the model with pre-trained weights for ImageNet.
1313
Supported configurations are:
14-
14+
1515
+ depth 50, cardinality of 32 and base width of 4.
1616
+ depth 101, cardinality of 32 and base width of 8.
1717
+ depth 101, cardinality of 64 and base width of 4.

src/convnets/resnets/seresnet.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ Creates a SEResNet model with the specified depth.
66
77
# Arguments
88
9-
- `depth`: one of `[18, 34, 50, 101, 152]`. The depth of the ResNet model.
9+
- `depth`: one of `[18, 34, 50, 101, 152]`. The depth of the SEResNet model.
1010
- `pretrain`: set to `true` to load the model with pre-trained weights for ImageNet
1111
- `inchannels`: the number of input channels.
1212
- `nclasses`: the number of output classes
1313
1414
!!! warning
15-
15+
1616
`SEResNet` does not currently support pretrained weights.
1717
1818
Advanced users who want more configuration options will be better served by using [`resnet`](@ref).
@@ -49,15 +49,15 @@ Creates a SEResNeXt model with the specified depth, cardinality, and base width.
4949
5050
# Arguments
5151
52-
- `depth`: one of `[50, 101, 152]`. The depth of the ResNet model.
52+
- `depth`: one of `[50, 101, 152]`. The depth of the SEResNeXt model.
5353
- `pretrain`: set to `true` to load the model with pre-trained weights for ImageNet
5454
- `cardinality`: the number of groups to be used in the 3x3 convolution in each block.
5555
- `base_width`: the number of feature maps in each group.
5656
- `inchannels`: the number of input channels
5757
- `nclasses`: the number of output classes
5858
5959
!!! warning
60-
60+
6161
`SEResNeXt` does not currently support pretrained weights.
6262
6363
Advanced users who want more configuration options will be better served by using [`resnet`](@ref).

0 commit comments

Comments
 (0)