Skip to content

Commit 4bb065d

Browse files
Formatting etc
Co-authored-by: Kyle Daruwalla <[email protected]>
1 parent a2e2a3d commit 4bb065d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/convnets/mobilenet.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
mobilenetv1(width_mult, config;
55
activation = relu,
66
inchannels = 3,
7+
fcsize = 1024,
78
nclasses = 1000)
89
910
Create a MobileNetv1 model ([reference](https://arxiv.org/abs/1704.04861v1)).
@@ -27,7 +28,7 @@ Create a MobileNetv1 model ([reference](https://arxiv.org/abs/1704.04861v1)).
2728
function mobilenetv1(width_mult, config;
2829
activation = relu,
2930
inchannels = 3,
30-
fcsize = 1024,
31+
fcsize = 1024,
3132
nclasses = 1000)
3233
layers = []
3334
for (dw, outch, stride, nrepeats) in config

0 commit comments

Comments
 (0)