Skip to content

Commit 8169f83

Browse files
Even more docs
Co-authored-by: Kyle Daruwalla <daruwalla.k.public@icloud.com>
1 parent 15f90a6 commit 8169f83

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/convnets/inception.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ Creates an Inceptionv4 model.
332332
333333
!!! warning
334334
335-
`Inceptionv4`` does not currently support pretrained weights.
335+
`Inceptionv4`` does not currently support pretrained weights.
336336
"""
337337
struct Inceptionv4
338338
layers::Any
@@ -540,9 +540,9 @@ Creates an Xception model.
540540
541541
# Arguments
542542
543-
- inchannels: number of input channels.
544-
- dropout: rate of dropout in classifier head.
545-
- nclasses: the number of output classes.
543+
- `inchannels`: number of input channels.
544+
- `dropout`: rate of dropout in classifier head.
545+
- `nclasses`: the number of output classes.
546546
"""
547547
function xception(; inchannels = 3, dropout = 0.0, nclasses = 1000)
548548
body = Chain(conv_bn((3, 3), inchannels, 32; stride = 2, bias = false)...,
@@ -570,14 +570,14 @@ Creates an Xception model.
570570
571571
# Arguments
572572
573-
- pretrain: set to `true` to load the pre-trained weights for ImageNet.
574-
- inchannels: number of input channels.
575-
- dropout: rate of dropout in classifier head.
576-
- nclasses: the number of output classes.
573+
- `pretrain`: set to `true` to load the pre-trained weights for ImageNet.
574+
- `inchannels`: number of input channels.
575+
- `dropout`: rate of dropout in classifier head.
576+
- `nclasses`: the number of output classes.
577577
578578
!!! warning
579579
580-
`Xception` does not currently support pretrained weights.
580+
`Xception` does not currently support pretrained weights.
581581
"""
582582
function Xception(; inchannels = 3, dropout = 0.0, nclasses = 1000)
583583
layers = xception(; inchannels, dropout, nclasses)

0 commit comments

Comments
 (0)