@@ -332,7 +332,7 @@ Creates an Inceptionv4 model.
332
332
333
333
!!! warning
334
334
335
- `Inceptionv4`` does not currently support pretrained weights.
335
+ `Inceptionv4`` does not currently support pretrained weights.
336
336
"""
337
337
struct Inceptionv4
338
338
layers:: Any
@@ -540,9 +540,9 @@ Creates an Xception model.
540
540
541
541
# Arguments
542
542
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.
546
546
"""
547
547
function xception (; inchannels = 3 , dropout = 0.0 , nclasses = 1000 )
548
548
body = Chain (conv_bn ((3 , 3 ), inchannels, 32 ; stride = 2 , bias = false )... ,
@@ -570,14 +570,14 @@ Creates an Xception model.
570
570
571
571
# Arguments
572
572
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.
577
577
578
578
!!! warning
579
579
580
- `Xception` does not currently support pretrained weights.
580
+ `Xception` does not currently support pretrained weights.
581
581
"""
582
582
function Xception (; inchannels = 3 , dropout = 0.0 , nclasses = 1000 )
583
583
layers = xception (; inchannels, dropout, nclasses)
0 commit comments